Skip to content

Commit 71437ec

Browse files
committed
frontend/index.tsx: dont set empty app-menu as persistant.
This seems to block the menu from beeing shown after logging in to a app that was completely closed. Part of #160
1 parent 16e0b80 commit 71437ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function App() {
8282

8383
case AppState.LoggedOut:
8484
if (Median.isNativeApp()) {
85-
Median.sidebar.setItems({items: [], enabled: false, persist: true});
85+
Median.sidebar.setItems({items: [], enabled: false, persist: false});
8686
}
8787
return <>
8888
<nav hidden={Median.isNativeApp()} id="logo-nav" class="navbar navbar-expand-md navbar-dark sticky-top flex-md-nowrap p-0 pb-2 pt-2 ps-2">

0 commit comments

Comments
 (0)