From a35747ed953fcee9108ab6488cfd88f16b625544 Mon Sep 17 00:00:00 2001 From: wooktori Date: Sun, 4 Jan 2026 00:38:49 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=B1=84=ED=8C=85=EB=B0=A9=20=EC=9C=A0?= =?UTF-8?q?=EC=A0=80=EB=AA=A9=EB=A1=9D=20=EC=83=81=ED=83=9C=EB=A9=94?= =?UTF-8?q?=EC=84=B8=EC=A7=80=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/pages/chat/chat-user-list/index.tsx | 2 +- src/types/service/chat.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/pages/chat/chat-user-list/index.tsx b/src/components/pages/chat/chat-user-list/index.tsx index 3608adde..4bb24fba 100644 --- a/src/components/pages/chat/chat-user-list/index.tsx +++ b/src/components/pages/chat/chat-user-list/index.tsx @@ -66,7 +66,7 @@ export const UserList = ({ onClose, roomId, roomType }: UserListProps) => {
{user.nickName}
- {user.userId || '상태 메시지가 없습니다.'} + {user.profileMessage || '상태 메시지가 없습니다.'}
diff --git a/src/types/service/chat.ts b/src/types/service/chat.ts index eb6fec1d..e19bb403 100644 --- a/src/types/service/chat.ts +++ b/src/types/service/chat.ts @@ -32,6 +32,7 @@ export interface ChatUser { profileImage: string; status: 'ACTIVE' | 'INACTIVE'; // 확인 필요💥💥 userId: number; + profileMessage: string; } export interface GetChatRoomsResponse {