Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Revert change to how notifications are loaded on mobile

+3 -3
+1 -1
app.config.js
··· 9 9 /** 10 10 * iOS build number. Must be incremented for each TestFlight version. 11 11 */ 12 - const IOS_BUILD_NUMBER = '1' 12 + const IOS_BUILD_NUMBER = '2' 13 13 14 14 /** 15 15 * Android build number. Must be incremented for each release.
+2 -2
src/view/screens/Notifications.tsx
··· 67 67 const onFocusCheckLatest = React.useCallback(() => { 68 68 // on focus, check for latest, but only invalidate if the user 69 69 // isnt scrolled down to avoid moving content underneath them 70 - unreadApi.checkUnread({invalidate: !isScrolledDown && isDesktop}) 71 - }, [unreadApi, isScrolledDown, isDesktop]) 70 + unreadApi.checkUnread({invalidate: !isScrolledDown}) 71 + }, [unreadApi, isScrolledDown]) 72 72 checkLatestRef.current = onFocusCheckLatest 73 73 74 74 // on-visible setup