Skip to content

Commit 118d731

Browse files
Makes LanguagePicker not render on LoggedInMenu for mobile
1 parent 02b8aed commit 118d731

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

app/web/components/Navigation/LoggedInMenu.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,9 +291,11 @@ export default function LoggedInMenu({
291291

292292
return (
293293
<>
294-
<Box sx={{ marginRight: theme.spacing(1) }}>
295-
<LanguagePickerSelect />
296-
</Box>
294+
{!isMobile && (
295+
<Box sx={{ marginRight: theme.spacing(1) }}>
296+
<LanguagePickerSelect />
297+
</Box>
298+
)}
297299
<Tooltip title={t("global:nav.notifications")}>
298300
<NotificationMenuItemWrapper>
299301
<NotificationBadge count={notificationCount}>

0 commit comments

Comments
 (0)