Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix web crash (#7426)

authored by

dan and committed by
GitHub
08c6ac7c 6ca97406

+2 -2
+1 -1
src/components/interstitials/Trending.tsx
··· 41 41 setTrendingDisabled(true) 42 42 }, [setTrendingDisabled]) 43 43 44 - const drawerGesture = useContext(DrawerGestureContext)! 44 + const drawerGesture = useContext(DrawerGestureContext) ?? Gesture.Native() // noop for web 45 45 const trendingScrollGesture = 46 46 Gesture.Native().blocksExternalGesture(drawerGesture) 47 47
+1 -1
src/view/com/pager/Pager.tsx
··· 130 130 [parentOnPageScrollStateChanged], 131 131 ) 132 132 133 - const drawerGesture = useContext(DrawerGestureContext)! 133 + const drawerGesture = useContext(DrawerGestureContext) ?? Gesture.Native() // noop for web 134 134 const nativeGesture = 135 135 Gesture.Native().requireExternalGestureToFail(drawerGesture) 136 136