sforkowany z mirror/soapbox
Merge branch 'notifications-fix' into 'develop'
Fix notifications loading Closes #1040 See merge request soapbox-pub/soapbox-fe!1640rtk-query
commit
8ed6ea5b54
|
@ -69,7 +69,7 @@ const Notifications = () => {
|
||||||
const handleLoadOlder = useCallback(debounce(() => {
|
const handleLoadOlder = useCallback(debounce(() => {
|
||||||
const last = notifications.last();
|
const last = notifications.last();
|
||||||
dispatch(expandNotifications({ maxId: last && last.get('id') }));
|
dispatch(expandNotifications({ maxId: last && last.get('id') }));
|
||||||
}, 300, { leading: true }), []);
|
}, 300, { leading: true }), [notifications]);
|
||||||
|
|
||||||
const handleScrollToTop = useCallback(debounce(() => {
|
const handleScrollToTop = useCallback(debounce(() => {
|
||||||
dispatch(scrollTopNotifications(true));
|
dispatch(scrollTopNotifications(true));
|
||||||
|
|
Ładowanie…
Reference in New Issue