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

* Update Navigation.tsx

* Update Navigation.tsx
zio/stable
Minseo Lee 2024-06-22 07:41:58 +09:00 committed by GitHub
parent 4d9e686e3b
commit 707ea5bf06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

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`)}}
/>
</>
)
}