Skip to content

Commit 2fe2217

Browse files
fix(cookie scheme): use token.required instead of token.property (#952)
1 parent ae1e5db commit 2fe2217

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/schemes/cookie.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@ const DEFAULTS: SchemePartialOptions<CookieSchemeOptions> = {
2828
},
2929
token: {
3030
type: '',
31-
property: '.status',
31+
property: '',
3232
maxAge: false,
33-
global: false
33+
global: false,
34+
required: false
3435
},
3536
endpoints: {
3637
csrf: null

0 commit comments

Comments
 (0)