From 92c35e54247ce5b62ad758db284c1b0c8982ef5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=9E=AC=ED=98=81?= <67510260+LEEJaeHyeok97@users.noreply.github.com> Date: Sun, 18 Feb 2024 00:48:32 +0900 Subject: [PATCH] =?UTF-8?q?[FIX]:=20=ED=9A=8C=EC=9B=90=ED=83=88=ED=87=B4?= =?UTF-8?q?=20=20=EC=98=A4=ED=83=80=20=EC=88=98=EC=A0=95=20(#219)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [FEAT]: oauth2-client 방식으로 코드 수정(#215) * [FEAT]: Cookie 추가 (#215) * [FIX]: 회원탈퇴 오타 수정 (#218) --- .../com/finfellows/domain/auth/application/AuthService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/finfellows/domain/auth/application/AuthService.java b/src/main/java/com/finfellows/domain/auth/application/AuthService.java index 0607996..2af472b 100644 --- a/src/main/java/com/finfellows/domain/auth/application/AuthService.java +++ b/src/main/java/com/finfellows/domain/auth/application/AuthService.java @@ -57,7 +57,7 @@ public Message deleteAccount(UserPrincipal userPrincipal) { return Message.builder() - .message("회원 탈퇴 하였습니다.") + .message("회원탈퇴 하였습니다.") .build(); } }