diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-05-17 22:04:01 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-05-17 22:04:01 -0500 |
commit | 998879d6d60b59e65250af395fd6ce389c89189b (patch) | |
tree | f7e5e45fc0113113042891e32cabf3744ff74fd6 /src/Navigation.tsx | |
parent | 177df363308c09eccc071acfcd0a33d14489ff6f (diff) | |
download | voidsky-998879d6d60b59e65250af395fd6ce389c89189b.tar.zst |
Remove redundant feed-settings page
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r-- | src/Navigation.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 025020afa..ea36b0f20 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -55,9 +55,8 @@ import {CopyrightPolicyScreen} from './view/screens/CopyrightPolicy' import {AppPasswords} from 'view/screens/AppPasswords' import {ModerationMutedAccounts} from 'view/screens/ModerationMutedAccounts' import {ModerationBlockedAccounts} from 'view/screens/ModerationBlockedAccounts' +import {SavedFeeds} from 'view/screens/SavedFeeds' import {getRoutingInstrumentation} from 'lib/sentry' -import {SavedFeeds} from './view/screens/SavedFeeds' -import {PinnedFeeds} from 'view/screens/PinnedFeeds' import {bskyTitle} from 'lib/strings/headings' const navigationRef = createNavigationContainerRef<AllNavigatorParams>() @@ -189,7 +188,6 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { options={{title: title('App Passwords')}} /> <Stack.Screen name="SavedFeeds" component={SavedFeeds} /> - <Stack.Screen name="PinnedFeeds" component={PinnedFeeds} /> </> ) } |