Преглед на файлове

fix: user list overflow in chat (#160)

Shinn Thant преди 1 година
родител
ревизия
64d8f32d2e
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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]