kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
Fix ScrollTopButton not loading new posts when scrolled to the top
rodzic
0206316acd
commit
2959dc5bae
|
@ -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(() => {
|
||||
|
|
Ładowanie…
Reference in New Issue