Skip to content

Commit

Permalink
Merge pull request #294 from FleetAdmiralJakob/fix-scroll-bug
Browse files Browse the repository at this point in the history
- Fixed Scrollbug
  • Loading branch information
FleetAdmiralJakob authored Jun 26, 2024
2 parents cf85073 + 185a8a8 commit 690654e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(internal-sites)/chats/[chatId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export default function Page({ params }: { params: { chatId: string } }) {

useEffect(() => {
scrollToBottom(false);
}, [messages]);
}, [messages.data]);

const [inputValue, setInputValue] = useState("");

Expand Down

0 comments on commit 690654e

Please sign in to comment.