Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Merge branch 'main' of https://github.com/bluesky-social/social-app

+1 -1
+1 -1
src/components/InterestTabs.tsx
··· 90 90 } 91 91 92 92 const canScrollLeft = scrollX > 0 93 - const canScrollRight = scrollX < contentWidth - totalWidth 93 + const canScrollRight = Math.ceil(scrollX) < contentWidth - totalWidth 94 94 95 95 const cleanupRef = useRef<(() => void) | null>(null) 96 96