diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-06-22 07:41:58 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-22 01:41:58 +0300 |
commit | 707ea5bf062755d4fd3a9476a4457cdc9d4991b7 (patch) | |
tree | 7bf1f2a9a6cfe0abf90e7f1c0a6c680577daf1a1 /src/Navigation.tsx | |
parent | 4d9e686e3b77756f8a404c4b38c7016f84a75ea0 (diff) | |
download | voidsky-707ea5bf062755d4fd3a9476a4457cdc9d4991b7.tar.zst |
Add options for Feeds in `Navigation.tsx` (#4503)
* Update Navigation.tsx * Update Navigation.tsx
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r-- | src/Navigation.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 5d4ba0e3f..f2b7cd911 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -312,7 +312,11 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { getComponent={() => MessagesSettingsScreen} options={{title: title(msg`Chat settings`), requireAuth: true}} /> - <Stack.Screen name="Feeds" getComponent={() => FeedsScreen} /> + <Stack.Screen + name="Feeds" + getComponent={() => FeedsScreen} + options={{title: title(msg`Feeds`)}} + /> </> ) } |