We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb0ed5f commit b41b027Copy full SHA for b41b027
src/app/api/auth/sign-out/route.ts
@@ -21,7 +21,7 @@ export const POST = async (): Promise<NextResponse> => {
21
})
22
23
return res
24
- } catch (error: any) {
+ } catch (error: unknown) {
25
console.error('로그아웃 처리 중 오류 발생:', error)
26
return NextResponse.json(
27
{ success: false, message: '서버 오류로 로그아웃 실패' },
0 commit comments