Open
Description
When the user logs out I call
auth.revokeTokens();
auth.removeUser();
But the user can still access a protected route and when I log
const auth = useAuth();
console.log(auth);
Auth shows user info and that they are still authenticated, including id_token
Is this a bug or is there a correct/better way to remove authentication?