Skip to content

Commit

Permalink
fix(#879): do not format refresh_token (#886)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoey-kaiser authored Aug 25, 2024
1 parent 058c5e3 commit 15630ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/composables/local/useAuthState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function useAuthState(): UseAuthStateReturn {
}
}

const refreshToken = computed(() => formatToken(rawRefreshToken.value, config))
const refreshToken = computed(() => rawRefreshToken.value)

return {
...commonAuthState,
Expand Down

0 comments on commit 15630ca

Please sign in to comment.