Adapt to recent changes

This commit is contained in:
aronmal 2023-02-14 21:05:19 +01:00
parent d825a0347f
commit db79dc43c9
Signed by: aronmal
GPG key ID: 816B7707426FC612
10 changed files with 62 additions and 45 deletions

View file

@ -24,7 +24,7 @@ async function checkTokenIsValid<T>(
})
}
return { ...payload, tokenBody: token, tokenIsValid: true }
return { ...payload, tokenBody: tokenData, tokenIsValid: true }
}
export default checkTokenIsValid