This commit is contained in:
Frédérick Pruneau 2026-02-05 14:30:05 -05:00
commit 019bc255a9
Signed by: fred
SSH Key Fingerprint: SHA256:NE8ZTR2qtoXf35Rq2m2y6PQA0sIUFPVTEIsGwG9FsXk

View File

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