diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-08-29 20:20:51 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-08-29 20:20:51 -0700 |
commit | 5d9534ca7258e6165e537b89d999a8c494501dc0 (patch) | |
tree | ecbfc3b98851698be6c701ab9ee3f4796d77501d /src/lib/routes/types.ts | |
parent | bf37913701836091b3e902694d72d190eeca5ec9 (diff) | |
download | voidsky-5d9534ca7258e6165e537b89d999a8c494501dc0.tar.zst |
Move onboarding to the withAuthRequired HOC
Diffstat (limited to 'src/lib/routes/types.ts')
-rw-r--r-- | src/lib/routes/types.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index 633fa57a5..4eb5e29d2 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -1,6 +1,5 @@ import {NavigationState, PartialState} from '@react-navigation/native' import type {NativeStackNavigationProp} from '@react-navigation/native-stack' -import {OnboardingScreenSteps} from 'state/models/discovery/onboarding' export type {NativeStackScreenProps} from '@react-navigation/native-stack' @@ -30,10 +29,6 @@ export type CommonNavigatorParams = { CopyrightPolicy: undefined AppPasswords: undefined SavedFeeds: undefined -} & OnboardingScreenParams - -export type OnboardingScreenParams = { - [K in keyof typeof OnboardingScreenSteps]: undefined } export type BottomTabNavigatorParams = CommonNavigatorParams & { |