Skip to content

Commit b41b027

Browse files
committed
[#56] ♻️ turn any type into unknown
1 parent fb0ed5f commit b41b027

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/api/auth/sign-out/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const POST = async (): Promise<NextResponse> => {
2121
})
2222

2323
return res
24-
} catch (error: any) {
24+
} catch (error: unknown) {
2525
console.error('로그아웃 처리 중 오류 발생:', error)
2626
return NextResponse.json(
2727
{ success: false, message: '서버 오류로 로그아웃 실패' },

0 commit comments

Comments
 (0)