diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-09-09 20:20:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-09 10:20:33 -0700 |
commit | 6432667f608fae447b59e41b9f8bb64b564205a1 (patch) | |
tree | f90e4d113aecf0eb528f8146919a1764ec94e056 /src/Navigation.tsx | |
parent | 4a1b1f17f46de9f8dde2766d61edc02c2267b14b (diff) | |
download | voidsky-6432667f608fae447b59e41b9f8bb64b564205a1.tar.zst |
ALF lists screen (#8941)
* alf list screens * relocate to `#/screens`, balkanize * use useBreakpoints * showCancel on subscribe menu * fix typo
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r-- | src/Navigation.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 003f9c2e8..45f078625 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -64,7 +64,6 @@ import {PostThreadScreen} from '#/view/screens/PostThread' import {PrivacyPolicyScreen} from '#/view/screens/PrivacyPolicy' import {ProfileScreen} from '#/view/screens/Profile' import {ProfileFeedLikedByScreen} from '#/view/screens/ProfileFeedLikedBy' -import {ProfileListScreen} from '#/view/screens/ProfileList' import {SavedFeeds} from '#/view/screens/SavedFeeds' import {Storybook} from '#/view/screens/Storybook' import {SupportScreen} from '#/view/screens/Support' @@ -92,6 +91,7 @@ import {ProfileFollowersScreen} from '#/screens/Profile/ProfileFollowers' import {ProfileFollowsScreen} from '#/screens/Profile/ProfileFollows' import {ProfileLabelerLikedByScreen} from '#/screens/Profile/ProfileLabelerLikedBy' import {ProfileSearchScreen} from '#/screens/Profile/ProfileSearch' +import {ProfileListScreen} from '#/screens/ProfileList' import {SearchScreen} from '#/screens/Search' import {AboutSettingsScreen} from '#/screens/Settings/AboutSettings' import {AccessibilitySettingsScreen} from '#/screens/Settings/AccessibilitySettings' |