Clear storage after logout

This commit is contained in:
David Baker 2022-09-26 13:01:43 +01:00
commit 6e91ec3a0e
2 changed files with 2 additions and 1 deletions

View file

@ -254,6 +254,7 @@ export const ClientProvider: FC<Props> = ({ children }) => {
const logout = useCallback(async () => {
await client.logout(undefined, true);
await client.clearStores();
clearSession();
setState({
client: undefined,