diff options
Diffstat (limited to 'src/view/shell/Drawer.tsx')
-rw-r--r-- | src/view/shell/Drawer.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx index b6e20dcaf..45a697eeb 100644 --- a/src/view/shell/Drawer.tsx +++ b/src/view/shell/Drawer.tsx @@ -22,8 +22,7 @@ import {useSetDrawerOpen} from '#/state/shell' import {formatCount} from '#/view/com/util/numeric/format' import {UserAvatar} from '#/view/com/util/UserAvatar' import {NavSignupCard} from '#/view/shell/NavSignupCard' -import {atoms as a} from '#/alf' -import {useTheme} from '#/alf' +import {atoms as a, useTheme, web} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {Divider} from '#/components/Divider' import { @@ -629,7 +628,7 @@ function MenuItem({ ) : undefined} </View> <Text - style={[a.flex_1, a.text_2xl, bold && a.font_bold]} + style={[a.flex_1, a.text_2xl, bold && a.font_bold, web(a.leading_snug)]} numberOfLines={1}> {label} </Text> |