Fixed refresh token bug

This commit is contained in:
dekzter 2025-04-20 09:21:53 -04:00
parent a199eeab92
commit 656c9e9e14

View file

@ -151,8 +151,9 @@ export default class API {
static async refreshToken(refresh) {
return await request(`${host}/api/accounts/token/refresh/`, {
auth: false,
method: 'POST',
body: { auth: false, refresh },
body: { refresh },
});
}