Skip to content

Commit

Permalink
[FE] 채팅 스크롤 버그 픽스(#909)
Browse files Browse the repository at this point in the history
  • Loading branch information
hafnium1923 authored Jan 3, 2024
1 parent c7d54d8 commit aa9e677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/feed/ThreadList/ThreadList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const ThreadList = (props: ThreadListProps) => {
threadEndRef.current.scrollIntoView();

// eslint-disable-next-line react-hooks/exhaustive-deps
}, [threadPages]);
}, [threadPages?.pages[0].threads.length]);

return (
<>
Expand Down

0 comments on commit aa9e677

Please sign in to comment.