Merge pull request 'fix(auth): fix async oversight in vue file' (#78) from release/nicolas/v1.1 into main

Reviewed-on: Targo/targo_frontend#78
This commit is contained in:
Nicolas 2026-02-05 14:29:30 -05:00
commit fcd30ed81f

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(() => {