Skip to content

Commit 779108e

Browse files
committed
2 parents 2c565f2 + 9713ba9 commit 779108e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/chat-room/chat-room.service.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ export class ChatRoomService {
3838
room.chatMessages.length > 0 ? room.chatMessages[0] : null; // 가장 최근 메시지 선택
3939

4040
return {
41-
chatRoomId: room.id,
41+
id: room.id,
4242
otherUser: {
4343
id: otherUser.id,
4444
nickname: otherUser.nickname,
45-
profileUrl: otherUser.profilePictureUrl,
45+
profilePictureUrl: otherUser.profilePictureUrl,
4646
},
4747
latestMessage: latestMessage,
4848
};

0 commit comments

Comments
 (0)