fix revoking tokens

This commit is contained in:
Henry Jameson 2026-06-22 16:13:30 +03:00
commit bf86f03a0a
2 changed files with 3 additions and 1 deletions

View file

@ -12,7 +12,7 @@ export const useOAuthTokensStore = defineStore('oauthTokens', {
fetchTokens() {
fetchOAuthTokens({
credentials: useOAuthStore().token,
}).then((tokens) => {
}).then(({ data: tokens }) => {
this.swapTokens(tokens)
})
},