diff options
Diffstat (limited to 'src/view/shell/desktop/RightNav.tsx')
-rw-r--r-- | src/view/shell/desktop/RightNav.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx index 4fae64fef..462627c41 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> - <InviteCodes /> + {store.session.hasSession && <InviteCodes />} <View> <TouchableOpacity style={[styles.darkModeToggle]} @@ -158,6 +158,7 @@ const styles = StyleSheet.create({ alignItems: 'center', gap: 8, marginHorizontal: 12, + marginTop: 8, }, darkModeToggleIcon: { flexDirection: 'row', |