Explorar el Código

fix: user list overflow in chat (#160)

Shinn Thant hace 1 año
padre
commit
64d8f32d2e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/features/chats/index.tsx

+ 1 - 1
src/features/chats/index.tsx

@@ -107,7 +107,7 @@ export default function Chats() {
               </label>
             </div>
 
-            <ScrollArea className='-mx-3 h-full p-3'>
+            <ScrollArea className='-mx-3 h-full overflow-scroll p-3'>
               {filteredChatList.map((chatUsr) => {
                 const { id, profile, username, messages, fullName } = chatUsr
                 const lastConvo = messages[0]