about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/Navigation.tsx8
-rw-r--r--src/view/screens/CustomFeed.tsx3
2 files changed, 5 insertions, 6 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx
index 46189c5f0..ff7a5f5c2 100644
--- a/src/Navigation.tsx
+++ b/src/Navigation.tsx
@@ -150,16 +150,12 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) {
       <Stack.Screen
         name="CustomFeed"
         component={CustomFeedScreen}
-        options={({route}) => ({
-          title: title(`Custom feed by @${route.params.name}`),
-        })}
+        options={{title: title('Feed')}}
       />
       <Stack.Screen
         name="CustomFeedLikedBy"
         component={CustomFeedLikedByScreen}
-        options={({route}) => ({
-          title: title(`Custom feed by @${route.params.name}`),
-        })}
+        options={{title: title('Liked by')}}
       />
       <Stack.Screen
         name="Debug"
diff --git a/src/view/screens/CustomFeed.tsx b/src/view/screens/CustomFeed.tsx
index 9f7f81691..76b26dcf7 100644
--- a/src/view/screens/CustomFeed.tsx
+++ b/src/view/screens/CustomFeed.tsx
@@ -20,6 +20,7 @@ import {Button} from 'view/com/util/forms/Button'
 import {Text} from 'view/com/util/text/Text'
 import * as Toast from 'view/com/util/Toast'
 import {isDesktopWeb} from 'platform/detection'
+import {useSetTitle} from 'lib/hooks/useSetTitle'
 
 type Props = NativeStackScreenProps<CommonNavigatorParams, 'CustomFeed'>
 export const CustomFeedScreen = withAuthRequired(
@@ -41,6 +42,8 @@ export const CustomFeedScreen = withAuthRequired(
       return feed
     }, [store, uri])
 
+    useSetTitle(currentFeed?.displayName)
+
     const onToggleSaved = React.useCallback(async () => {
       try {
         if (currentFeed?.isSaved) {