Skip to content

Commit c6f2c2d

Browse files
committed
fix: removed Auth0 mentions in security util
1 parent 5405e60 commit c6f2c2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/runtime/server/utils/security.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@ export const checks = {
9797
if (!state || !stateInCookie) {
9898
const error = createError({
9999
statusCode: 401,
100-
message: 'Auth0 login failed: state is missing'
100+
message: 'Login failed: state is missing'
101101
})
102102
throw error
103103
}
104104
if (state !== stateInCookie) {
105105
const error = createError({
106106
statusCode: 401,
107-
message: 'Auth0 login failed: state does not match'
107+
message: 'Login failed: state does not match'
108108
})
109109
throw error
110110
}

0 commit comments

Comments
 (0)