Compare commits

..

1 Commits

Author SHA1 Message Date
49ba90a16e Update Rust crate redis to 0.29.5
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-04-07 00:32:18 +00:00

View File

@ -43,13 +43,9 @@ export function BaseAuthenticatedPage(): React.ReactElement {
setAnchorEl(null);
};
const signOut = async () => {
const signOut = () => {
handleCloseMenu();
try {
await AuthApi.SignOut();
} catch (e) {
console.error(e);
}
AuthApi.SignOut();
navigate("/");
auth.setSignedIn(false);
};