Skip to content

Commit

Permalink
refactor(#60): await 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
hobiJeong committed Oct 31, 2023
1 parent 702b218 commit 5d60240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chat/services/chat.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export class ChatService {

const imageUrl = await this.s3Service.ChatImageUpload(file, myId);

return await this.chatRepository.createChatImage(
return this.chatRepository.createChatImage(
roomId,
myId,
receiverId,
Expand Down

0 comments on commit 5d60240

Please sign in to comment.