fix(auth): fix async oversight in vue file

This commit is contained in:
Nic D 2026-02-05 14:29:09 -05:00
parent 99419e24cf
commit 450fc28782

View File

@ -35,8 +35,8 @@ import { useAuthApi } from 'src/modules/auth/composables/use-auth-api';
}); });
}; };
const handleLogout = () => { const handleLogout = async () => {
authApi.logout(); await authApi.logout();
}; };
onMounted(() => { onMounted(() => {