Hide both the left and right nav on desktop when logged out
This commit is contained in:
@@ -36,9 +36,9 @@ const ShellInner = observer(() => {
|
||||
<FlatNavigator />
|
||||
</ErrorBoundary>
|
||||
</View>
|
||||
{isDesktop && (
|
||||
{isDesktop && store.session.hasSession && (
|
||||
<>
|
||||
{store.session.hasSession && <DesktopLeftNav />}
|
||||
<DesktopLeftNav />
|
||||
<DesktopRightNav />
|
||||
</>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user