Skip to content

Commit 543a82a

Browse files
Fix main toolbar navlinks when changing language (#17)
1 parent b3aa7a6 commit 543a82a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/App/app-top-bar.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,10 @@ const AppTopBar: FunctionComponent = () => {
121121
variant="scrollable"
122122
scrollButtons="auto"
123123
aria-label="Main navigation menu"
124-
sx={{ visibility: !user ? 'hidden' : undefined }}
124+
sx={{
125+
visibility: !user ? 'hidden' : undefined,
126+
flexGrow: 1,
127+
}}
125128
value={selectedTabValue}
126129
>
127130
{[...tabs.values()]}

0 commit comments

Comments
 (0)