We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b9871a6 + db53759 commit 9713ba9Copy full SHA for 9713ba9
1 file changed
src/chat-room/chat-room.service.ts
@@ -38,11 +38,11 @@ export class ChatRoomService {
38
room.chatMessages.length > 0 ? room.chatMessages[0] : null; // 가장 최근 메시지 선택
39
40
return {
41
- chatRoomId: room.id,
+ id: room.id,
42
otherUser: {
43
id: otherUser.id,
44
nickname: otherUser.nickname,
45
- profileUrl: otherUser.profilePictureUrl,
+ profilePictureUrl: otherUser.profilePictureUrl,
46
},
47
latestMessage: latestMessage,
48
};
0 commit comments