diff options
author | Hailey <me@haileyok.com> | 2024-06-27 19:35:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 19:35:20 -0700 |
commit | 91c4aa7c2dc598dd5e2c828e44c0d2c94cf0967d (patch) | |
tree | 362f79f88bab8107053c1fe0201ddcb4d0d21ac5 /src/Navigation.tsx | |
parent | 030c8e268e161bebe360e3ad97b1c18bd8425ca8 (diff) | |
download | voidsky-91c4aa7c2dc598dd5e2c828e44c0d2c94cf0967d.tar.zst |
Handle pressing all go.bsky.app links in-app w/ resolution (#4680)
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r-- | src/Navigation.tsx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 5cb4f4105..4ecf3fff8 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -43,7 +43,10 @@ import HashtagScreen from '#/screens/Hashtag' import {ModerationScreen} from '#/screens/Moderation' import {ProfileKnownFollowersScreen} from '#/screens/Profile/KnownFollowers' import {ProfileLabelerLikedByScreen} from '#/screens/Profile/ProfileLabelerLikedBy' -import {StarterPackScreen} from '#/screens/StarterPack/StarterPackScreen' +import { + StarterPackScreen, + StarterPackScreenShort, +} from '#/screens/StarterPack/StarterPackScreen' import {Wizard} from '#/screens/StarterPack/Wizard' import {init as initAnalytics} from './lib/analytics/analytics' import {useWebScrollRestoration} from './lib/hooks/useWebScrollRestoration' @@ -322,7 +325,12 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { <Stack.Screen name="StarterPack" getComponent={() => StarterPackScreen} - options={{title: title(msg`Starter Pack`), requireAuth: true}} + options={{title: title(msg`Starter Pack`)}} + /> + <Stack.Screen + name="StarterPackShort" + getComponent={() => StarterPackScreenShort} + options={{title: title(msg`Starter Pack`)}} /> <Stack.Screen name="StarterPackWizard" |