Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix navigation (#8648)

authored by

Samuel Newman and committed by
GitHub
60c06892 4ccbae7c

+2 -1
+1
src/view/com/util/Link.tsx
··· 11 11 type ViewStyle, 12 12 } from 'react-native' 13 13 import {sanitizeUrl} from '@braintree/sanitize-url' 14 + import {StackActions} from '@react-navigation/native' 14 15 15 16 import { 16 17 type DebouncedNavigationProp,
+1 -1
src/view/shell/desktop/LeftNav.tsx
··· 350 350 } else { 351 351 const [screen, params] = router.matchPath(href) 352 352 // @ts-expect-error TODO: type matchPath well enough that it can be plugged into navigation.navigate directly 353 - navigation.popTo(screen, params) 353 + navigation.navigate(screen, params, {pop: true}) 354 354 } 355 355 }, 356 356 [navigation, href, isCurrent],