about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2024-06-22 07:41:58 +0900
committerGitHub <noreply@github.com>2024-06-22 01:41:58 +0300
commit707ea5bf062755d4fd3a9476a4457cdc9d4991b7 (patch)
tree7bf1f2a9a6cfe0abf90e7f1c0a6c680577daf1a1
parent4d9e686e3b77756f8a404c4b38c7016f84a75ea0 (diff)
downloadvoidsky-707ea5bf062755d4fd3a9476a4457cdc9d4991b7.tar.zst
Add options for Feeds in `Navigation.tsx` (#4503)
* Update Navigation.tsx

* Update Navigation.tsx
-rw-r--r--src/Navigation.tsx6
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`)}}
+      />
     </>
   )
 }