diff --git a/src/components/InterestTabs.tsx b/src/components/InterestTabs.tsx index b61157ed82..aec4217681 100644 --- a/src/components/InterestTabs.tsx +++ b/src/components/InterestTabs.tsx @@ -90,7 +90,7 @@ export function InterestTabs({ } const canScrollLeft = scrollX > 0 - const canScrollRight = scrollX < contentWidth - totalWidth + const canScrollRight = Math.ceil(scrollX) < contentWidth - totalWidth const cleanupRef = useRef<(() => void) | null>(null)