Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

* Update Navigation.tsx

* Update Navigation.tsx

authored by

Minseo Lee and committed by
GitHub
707ea5bf 4d9e686e

+5 -1
+5 -1
src/Navigation.tsx
··· 312 312 getComponent={() => MessagesSettingsScreen} 313 313 options={{title: title(msg`Chat settings`), requireAuth: true}} 314 314 /> 315 - <Stack.Screen name="Feeds" getComponent={() => FeedsScreen} /> 315 + <Stack.Screen 316 + name="Feeds" 317 + getComponent={() => FeedsScreen} 318 + options={{title: title(msg`Feeds`)}} 319 + /> 316 320 </> 317 321 ) 318 322 }