An ATproto social media client -- with an independent Appview.

Web: fix Suggested Accounts tabs end of scroll detection (#8939)

authored by

Bartosz Kaszubowski and committed by
GitHub
0bda727e 1c78f36a

+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