Merge pull request 'hotFix(logout): correct order' (!43) from hotFix_correctOrder_logout into master
gitea/hedera-web/pipeline/head There was a failure building this commit Details

Reviewed-on: #43
Reviewed-by: Juan Ferrer <juan@verdnatura.es>
This commit is contained in:
Juan Ferrer 2023-07-28 11:25:16 +00:00
commit 2adfd2299a
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);
}
},