fix: message area scroll — add min-h-0 to flex column

This commit is contained in:
2026-07-16 09:23:08 -04:00
parent 0f19b9089d
commit 300aeb219f
+1 -1
View File
@@ -804,7 +804,7 @@ export function ChatArea() {
<ListView channelId={activeChannelId} channelName={activeChannel.name} />
) : (
<>
<div className="flex-1 flex flex-col min-w-0 relative">
<div className="flex-1 flex flex-col min-w-0 min-h-0 relative">
{showSearch && activeChannelId && activeChannel && (
<MessageSearch
channelId={activeChannelId}