Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix button to find people to follow (#806)

authored by

Logan Rosen and committed by
GitHub
a89129fc 19ea6b6a

+21 -11
+1 -1
package.json
··· 108 108 "react-avatar-editor": "^13.0.0", 109 109 "react-circular-progressbar": "^2.1.0", 110 110 "react-dom": "^18.2.0", 111 - "react-native": "0.71.7", 111 + "react-native": "0.71.8", 112 112 "react-native-appstate-hook": "^1.0.6", 113 113 "react-native-background-fetch": "^4.1.8", 114 114 "react-native-draggable-flatlist": "^4.0.1",
+7 -2
src/view/com/posts/CustomFeedEmptyState.tsx
··· 11 11 import {NavigationProp} from 'lib/routes/types' 12 12 import {usePalette} from 'lib/hooks/usePalette' 13 13 import {s} from 'lib/styles' 14 + import {isWeb} from 'platform/detection' 14 15 15 16 export function CustomFeedEmptyState() { 16 17 const pal = usePalette('default') ··· 18 19 const navigation = useNavigation<NavigationProp>() 19 20 20 21 const onPressFindAccounts = React.useCallback(() => { 21 - navigation.navigate('SearchTab') 22 - navigation.popToTop() 22 + if (isWeb) { 23 + navigation.navigate('Search', {}) 24 + } else { 25 + navigation.navigate('SearchTab') 26 + navigation.popToTop() 27 + } 23 28 }, [navigation]) 24 29 25 30 return (
+7 -2
src/view/com/posts/FollowingEmptyState.tsx
··· 11 11 import {NavigationProp} from 'lib/routes/types' 12 12 import {usePalette} from 'lib/hooks/usePalette' 13 13 import {s} from 'lib/styles' 14 + import {isWeb} from 'platform/detection' 14 15 15 16 export function FollowingEmptyState() { 16 17 const pal = usePalette('default') ··· 18 19 const navigation = useNavigation<NavigationProp>() 19 20 20 21 const onPressFindAccounts = React.useCallback(() => { 21 - navigation.navigate('SearchTab') 22 - navigation.popToTop() 22 + if (isWeb) { 23 + navigation.navigate('Search', {}) 24 + } else { 25 + navigation.navigate('SearchTab') 26 + navigation.popToTop() 27 + } 23 28 }, [navigation]) 24 29 25 30 return (
+6 -6
yarn.lock
··· 15227 15227 dependencies: 15228 15228 fast-base64-decode "^1.0.0" 15229 15229 15230 - react-native-gradle-plugin@^0.71.17: 15230 + react-native-gradle-plugin@^0.71.18: 15231 15231 version "0.71.18" 15232 15232 resolved "https://registry.yarnpkg.com/react-native-gradle-plugin/-/react-native-gradle-plugin-0.71.18.tgz#20ef199bc85be32e45bb6cc069ec2e7dcb1a74a6" 15233 15233 integrity sha512-7F6bD7B8Xsn3JllxcwHhFcsl9aHIig47+3eN4IHFNqfLhZr++3ElDrcqfMzugM+niWbaMi7bJ0kAkAL8eCpdWg== ··· 15345 15345 postcss-value-parser "^4.2.0" 15346 15346 styleq "^0.1.2" 15347 15347 15348 - react-native@0.71.7: 15349 - version "0.71.7" 15350 - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.71.7.tgz#d0ae409f6ee4fc7e7a876b4ca9d8d28934133228" 15351 - integrity sha512-Id6iRLS581fJMFGbBl1jP5uSmjExtGOvw5Gvh7694zISXjsRAsFMmU+izs0pyCLqDBoHK7y4BT7WGPGw693nYw== 15348 + react-native@0.71.8: 15349 + version "0.71.8" 15350 + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.71.8.tgz#4314145341c49448cf7465b93ced52a433a5e191" 15351 + integrity sha512-ftMAuhpgTkbHU9brrqsEyxcNrpYvXKeATY+if22Nfhhg1zW+6wn95w9otwTnA3xHkljPCbng8mUhmmERjGEl7g== 15352 15352 dependencies: 15353 15353 "@jest/create-cache-key-function" "^29.2.1" 15354 15354 "@react-native-community/cli" "10.2.2" ··· 15375 15375 promise "^8.3.0" 15376 15376 react-devtools-core "^4.26.1" 15377 15377 react-native-codegen "^0.71.5" 15378 - react-native-gradle-plugin "^0.71.17" 15378 + react-native-gradle-plugin "^0.71.18" 15379 15379 react-refresh "^0.4.0" 15380 15380 react-shallow-renderer "^16.15.0" 15381 15381 regenerator-runtime "^0.13.2"