diff options
Diffstat (limited to 'src/view/shell/desktop-web/index.tsx')
-rw-r--r-- | src/view/shell/desktop-web/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/shell/desktop-web/index.tsx b/src/view/shell/desktop-web/index.tsx index 13acbbfed..194954349 100644 --- a/src/view/shell/desktop-web/index.tsx +++ b/src/view/shell/desktop-web/index.tsx @@ -9,7 +9,7 @@ export const DesktopWebShell: React.FC = observer(({children}) => { const store = useStores() return ( <View style={styles.outerContainer}> - {store.session.isAuthed ? ( + {store.session.hasSession ? ( <> <DesktopLeftColumn /> <View style={styles.innerContainer}>{children}</View> |