Bluesky app fork with some witchin' additions 💫

fix progress guide location breakpoints (#7887)

authored by samuel.fm and committed by

GitHub c82f7683 7222d6fe

+2 -3
+2 -3
src/view/com/posts/PostFeed.tsx
··· 16 16 17 17 import {DISCOVER_FEED_URI, KNOWN_SHUTDOWN_FEEDS} from '#/lib/constants' 18 18 import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' 19 - import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' 20 19 import {logEvent} from '#/lib/statsig/statsig' 21 20 import {logger} from '#/logger' 22 21 import {isIOS, isNative, isWeb} from '#/platform/detection' ··· 300 299 301 300 const followProgressGuide = useProgressGuide('follow-10') 302 301 const followAndLikeProgressGuide = useProgressGuide('like-10-and-follow-7') 303 - const {isDesktop} = useWebMediaQueries() 302 + 304 303 const showProgressIntersitial = 305 - (followProgressGuide || followAndLikeProgressGuide) && !isDesktop 304 + (followProgressGuide || followAndLikeProgressGuide) && !rightNavVisible 306 305 307 306 const {trendingDisabled, trendingVideoDisabled} = useTrendingSettings() 308 307