Skip to content

Commit

Permalink
fix: Add space to text string to workaround RN text display bug (#57783)
Browse files Browse the repository at this point in the history
  • Loading branch information
derekblank authored Jan 12, 2024
1 parent 295ebf5 commit 7e74cc8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/editor/src/components/offline-status/index.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,8 @@ const OfflineStatus = () => {
) }
style={ containerStyle }
>
<View style={ containerStyle }>
<Icon fill={ iconStyle.fill } icon={ offlineIcon } />
<Text style={ textStyle }>{ __( 'Working Offline' ) }</Text>
</View>
<Icon fill={ iconStyle.fill } icon={ offlineIcon } />
<Text style={ textStyle }>{ __( 'Working Offline' ) } </Text>
</View>
) : null;
};
Expand Down

0 comments on commit 7e74cc8

Please sign in to comment.