Skip to content

Commit c64e7f1

Browse files
committed
fix(local-scheme-token): removed token type from axios setToken
fixes #113
1 parent 42882ef commit c64e7f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/schemes/local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default class LocalScheme {
99
_setToken (token) {
1010
if (this.options.globalToken) {
1111
// Set Authorization token for all axios requests
12-
this.$auth.ctx.app.$axios.setToken(token, this.options.tokenType)
12+
this.$auth.ctx.app.$axios.setToken(token)
1313
}
1414
}
1515

0 commit comments

Comments
 (0)