Merge branch 'main' of https://github.com/ivansilvestre/social-app into ivansilvestre-main
commit
7a7b99d033
|
@ -59,7 +59,7 @@ export const DesktopRightNav = observer(function DesktopRightNav() {
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
<InviteCodes />
|
{store.session.hasSession && <InviteCodes />}
|
||||||
<View>
|
<View>
|
||||||
<TouchableOpacity
|
<TouchableOpacity
|
||||||
style={[styles.darkModeToggle]}
|
style={[styles.darkModeToggle]}
|
||||||
|
@ -158,6 +158,7 @@ const styles = StyleSheet.create({
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
gap: 8,
|
gap: 8,
|
||||||
marginHorizontal: 12,
|
marginHorizontal: 12,
|
||||||
|
marginTop: 8,
|
||||||
},
|
},
|
||||||
darkModeToggleIcon: {
|
darkModeToggleIcon: {
|
||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
|
|
|
@ -38,7 +38,7 @@ const ShellInner = observer(() => {
|
||||||
</View>
|
</View>
|
||||||
{isDesktop && (
|
{isDesktop && (
|
||||||
<>
|
<>
|
||||||
<DesktopLeftNav />
|
{store.session.hasSession && <DesktopLeftNav />}
|
||||||
<DesktopRightNav />
|
<DesktopRightNav />
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in New Issue