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 {