Skip to content

Commit

Permalink
fix(mobile): Screen header
Browse files Browse the repository at this point in the history
  • Loading branch information
voloshinskii committed Apr 12, 2024
1 parent 93416a2 commit 2638351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/uikit/src/containers/Screen/ScreenHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const ScreenHeader = memo<ScreenHeaderProps>((props) => {
return {};
});

const isSmallTitle = typeof title === 'string' && title.length > 18;
const isSmallTitle = typeof title === 'string' && title.length <= 18;

const backButtonSlot = (
<TouchableOpacity
Expand Down

0 comments on commit 2638351

Please sign in to comment.