Merge "fix: Clear local storage when logout"

This commit is contained in:
Zuul 2022-03-26 10:03:23 +00:00 committed by Gerrit Code Review
commit c8fee87d63

View File

@ -270,6 +270,8 @@ export class RootStore {
stores.forEach((store) => { stores.forEach((store) => {
store.clearData(); store.clearData();
}); });
// clear keystone_token in the local storage
localStorage.clear();
} }
} }