about summary refs log tree commit diff
path: root/src/Navigation.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-08-29 20:20:51 -0700
committerPaul Frazee <pfrazee@gmail.com>2023-08-29 20:20:51 -0700
commit5d9534ca7258e6165e537b89d999a8c494501dc0 (patch)
treeecbfc3b98851698be6c701ab9ee3f4796d77501d /src/Navigation.tsx
parentbf37913701836091b3e902694d72d190eeca5ec9 (diff)
downloadvoidsky-5d9534ca7258e6165e537b89d999a8c494501dc0.tar.zst
Move onboarding to the withAuthRequired HOC
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r--src/Navigation.tsx18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx
index 334370ab0..d45376ef1 100644
--- a/src/Navigation.tsx
+++ b/src/Navigation.tsx
@@ -67,8 +67,6 @@ import {getRoutingInstrumentation} from 'lib/sentry'
 import {bskyTitle} from 'lib/strings/headings'
 import {JSX} from 'react/jsx-runtime'
 import {timeout} from 'lib/async/timeout'
-import {RecommendedFeedsScreen} from 'view/screens/onboarding/RecommendedFeeds'
-import {WelcomeScreen} from 'view/screens/onboarding/Welcome'
 
 const navigationRef = createNavigationContainerRef<AllNavigatorParams>()
 
@@ -221,22 +219,6 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) {
         component={SavedFeeds}
         options={{title: title('Edit My Feeds')}}
       />
-      <Stack.Screen
-        name="Welcome"
-        component={WelcomeScreen}
-        options={{
-          title: title('Welcome'),
-          presentation: 'card',
-          gestureEnabled: false,
-        }}
-      />
-      <Stack.Screen
-        name="RecommendedFeeds"
-        component={RecommendedFeedsScreen}
-        options={{
-          title: title('Recommended Feeds'),
-        }}
-      />
     </>
   )
 }