Skip to content

Commit

Permalink
fix: Add space to text string to workaround RN text display bug
Browse files Browse the repository at this point in the history
  • Loading branch information
derekblank committed Jan 12, 2024
1 parent 3dba5c9 commit 15b1b1b
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 15b1b1b

Please sign in to comment.