From edcfa2a837d7c9c8ada19322be5ca0b9d523bec7 Mon Sep 17 00:00:00 2001 From: "jihoon87.lee" Date: Wed, 4 Feb 2026 12:28:15 +0900 Subject: [PATCH] =?UTF-8?q?Refactor:=20=EC=9D=B8=EC=A6=9D=20=EC=BD=9C?= =?UTF-8?q?=EB=B0=B1=20=EC=97=90=EB=9F=AC=20=EB=A9=94=EC=8B=9C=EC=A7=80=20?= =?UTF-8?q?=EB=B3=80=EC=88=98=EC=97=90=20=ED=83=80=EC=9E=85=20=EB=AA=85?= =?UTF-8?q?=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit app/auth/callback/route.ts - AUTH_ERROR_MESSAGES.DEFAULT를 할당하는 message 변수에 string 타입 명시 --- app/auth/callback/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/auth/callback/route.ts b/app/auth/callback/route.ts index 3a4573d..40e207f 100644 --- a/app/auth/callback/route.ts +++ b/app/auth/callback/route.ts @@ -26,7 +26,7 @@ export async function GET(request: Request) { error_description, }); - let message = AUTH_ERROR_MESSAGES.DEFAULT; + let message: string = AUTH_ERROR_MESSAGES.DEFAULT; // 에러 종류에 따른 메시지 분기 if (error === "access_denied") {