StatusListContainer: bust useCallback if timelineId changes

dnd
Alex Gleason 2022-06-03 12:25:59 -05:00
rodzic 0a34bcfcba
commit edf366858a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -38,11 +38,11 @@ const StatusListContainer: React.FC<IStatusListContainer> = ({
const handleScrollToTop = useCallback(debounce(() => {
dispatch(scrollTopTimeline(timelineId, true));
}, 100), []);
}, 100), [timelineId]);
const handleScroll = useCallback(debounce(() => {
dispatch(scrollTopTimeline(timelineId, false));
}, 100), []);
}, 100), [timelineId]);
return (
<>