Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/pages/chat/chat-user-list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const UserList = ({ onClose, roomId, roomType }: UserListProps) => {
<div className='flex-1'>
<div className='text-text-md-bold text-gray-800'>{user.nickName}</div>
<div className='text-text-sm-medium line-clamp-1 text-gray-600'>
{user.userId || '상태 메시지가 없습니다.'}
{user.profileMessage || '상태 메시지가 없습니다.'}
</div>
</div>

Expand Down
1 change: 1 addition & 0 deletions src/types/service/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export interface ChatUser {
profileImage: string;
status: 'ACTIVE' | 'INACTIVE'; // 확인 필요💥💥
userId: number;
profileMessage: string;
}

export interface GetChatRoomsResponse {
Expand Down