diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-05-30 13:53:33 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-05-30 13:53:33 -0500 |
commit | e77c6169706640ea95129d8ee26bb022af419374 (patch) | |
tree | d5b99ba67b5cb2252e80acf41a16338ec8ad73d1 /src/view/shell/desktop/RightNav.tsx | |
parent | 7a7b99d033d532a2f119f5f823aaff04e940fea1 (diff) | |
download | voidsky-e77c6169706640ea95129d8ee26bb022af419374.tar.zst |
Hide both the left and right nav on desktop when logged out
Diffstat (limited to 'src/view/shell/desktop/RightNav.tsx')
-rw-r--r-- | src/view/shell/desktop/RightNav.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx index 462627c41..02165d3c6 100644 --- a/src/view/shell/desktop/RightNav.tsx +++ b/src/view/shell/desktop/RightNav.tsx @@ -59,7 +59,7 @@ export const DesktopRightNav = observer(function DesktopRightNav() { /> </View> </View> - {store.session.hasSession && <InviteCodes />} + <InviteCodes /> <View> <TouchableOpacity style={[styles.darkModeToggle]} |