hotFix(logout): correct order
gitea/hedera-web/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2023-07-28 10:16:28 +02:00
parent bb4e348d0c
commit 0f3ddb1a99
1 changed files with 1 additions and 1 deletions

View File

@ -85,8 +85,8 @@ module.exports = new Class({
const config = {
headers: {'Authorization': token}
};
await this.post('Accounts/logout', null, config);
await this.send('user/logout');
await this.post('Accounts/logout', null, config);
}
},