Skip to content

Commit 64d8f32

Browse files
authored
fix: user list overflow in chat (#160)
1 parent 1a6bddd commit 64d8f32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/chats/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export default function Chats() {
107107
</label>
108108
</div>
109109

110-
<ScrollArea className='-mx-3 h-full p-3'>
110+
<ScrollArea className='-mx-3 h-full overflow-scroll p-3'>
111111
{filteredChatList.map((chatUsr) => {
112112
const { id, profile, username, messages, fullName } = chatUsr
113113
const lastConvo = messages[0]

0 commit comments

Comments
 (0)