diff --git a/main-server/src/main/java/com/sickgyun/server/coffeechat/presentation/dto/MySentCoffeeChatResponse.java b/main-server/src/main/java/com/sickgyun/server/coffeechat/presentation/dto/MySentCoffeeChatResponse.java index 9d1d599..2b8fc1d 100644 --- a/main-server/src/main/java/com/sickgyun/server/coffeechat/presentation/dto/MySentCoffeeChatResponse.java +++ b/main-server/src/main/java/com/sickgyun/server/coffeechat/presentation/dto/MySentCoffeeChatResponse.java @@ -18,7 +18,8 @@ public static MySentCoffeeChatResponse from(CoffeeChat coffeeChat) { coffeeChat.getId(), coffeeChat.getState(), coffeeChat.getMessage(), - coffeeChat.getState().equals(State.ACCEPT) ? ContactResponse.from(coffeeChat.getToUser().getContact()) : null, + coffeeChat.getState().equals(State.ACCEPT) + ? ContactResponse.from(coffeeChat.getToUser().getContact()) : null, UserResponse.from(coffeeChat.getToUser()), UserResponse.from(coffeeChat.getFromUser()) );