Add options for Feeds in Navigation.tsx (#4503)

* Update Navigation.tsx

* Update Navigation.tsx
This commit is contained in:
Minseo Lee
2024-06-22 07:41:58 +09:00
committed by GitHub
parent 4d9e686e3b
commit 707ea5bf06
+5 -1
View File
@@ -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`)}}
/>
</>
)
}