Fix ScrollTopButton not loading new posts when scrolled to the top

This commit is contained in:
Alex Gleason
2023-10-14 13:18:30 -05:00
parent 0206316acd
commit 2959dc5bae

View File

@ -44,10 +44,10 @@ const ScrollTopButton: React.FC<IScrollTopButton> = ({
/** Unload feed items if scrolled to the top. */
const maybeUnload = useCallback(() => {
if (autoload && scrolledTop) {
if (autoload && scrolledTop && count) {
onClick();
}
}, [autoload, scrolledTop, onClick]);
}, [autoload, scrolledTop, count, onClick]);
/** Set state while scrolling. */
const handleScroll = useCallback(throttle(() => {