diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-05 13:25:04 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-05 13:25:04 -0600 |
commit | f27e32e54c3e6a6f7d156cf6c23c11778a7dd316 (patch) | |
tree | 484dbd281d938082c0de8ec3ba346ed8af839429 /src/view/shell/desktop-web | |
parent | 59363181e1c72dcec3a86cf155f12a556e569b8f (diff) | |
download | voidsky-f27e32e54c3e6a6f7d156cf6c23c11778a7dd316.tar.zst |
Ensure the UI always renders, even in bad network conditions (close #6)
Diffstat (limited to 'src/view/shell/desktop-web')
-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> |