chat fix? maybe? #46

This commit is contained in:
Nicolas
2025-07-01 08:42:19 +02:00
parent c3bac1d23f
commit 8493f05ab0

View File

@@ -139,7 +139,7 @@ export const Chat = () => {
{chat.name}
{chat.notification && <span className="indicator-item status status-info" />}
</a>
<div className="tab-content bg-base-100 border-base-300 p-6 overflow-y-auto">
<div className="tab-content bg-base-100 border-base-300 p-6 overflow-y-auto max-h-[250px]">
{chat.messages.map((chatMessage) => {
const isSender = chatMessage.senderId === session.data?.user.id;
return (