diff options
author | Samuel Newman <mozzius@protonmail.com> | 2023-12-20 11:02:39 +0000 |
---|---|---|
committer | Samuel Newman <mozzius@protonmail.com> | 2023-12-20 11:02:39 +0000 |
commit | 71b6a447ab250201e5772e43b745edb587b781b7 (patch) | |
tree | 1bd51366c708f5955a210e749d415cbe5fd1d800 /src/view/shell/createNativeStackNavigatorWithAuth.tsx | |
parent | e87065f04227b0f9859b034c3c71679f52e63689 (diff) | |
download | voidsky-71b6a447ab250201e5772e43b745edb587b781b7.tar.zst |
show search in centre column on desktop
Diffstat (limited to 'src/view/shell/createNativeStackNavigatorWithAuth.tsx')
-rw-r--r-- | src/view/shell/createNativeStackNavigatorWithAuth.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/shell/createNativeStackNavigatorWithAuth.tsx b/src/view/shell/createNativeStackNavigatorWithAuth.tsx index 43dc28159..9fea6e49f 100644 --- a/src/view/shell/createNativeStackNavigatorWithAuth.tsx +++ b/src/view/shell/createNativeStackNavigatorWithAuth.tsx @@ -124,6 +124,7 @@ function NativeStackNavigator({ }, } } + return ( <NavigationContent> <NativeStackView @@ -136,7 +137,7 @@ function NativeStackNavigator({ {isWeb && !isMobile && ( <> <DesktopLeftNav /> - <DesktopRightNav /> + <DesktopRightNav routeName={activeRoute.name} /> </> )} </NavigationContent> |