Fix duplicate /api/auth/member call and add request deduplication

Remove redundant checkMemberStatus() from coming-soon page since the
auth-init plugin already handles it. Add in-flight request deduplication
to prevent concurrent calls from any source. Strip debug console.logs.
This commit is contained in:
Jennie Robinson Faber 2026-03-19 15:04:04 +00:00
parent 52bb17e25d
commit 78c592c13a
3 changed files with 22 additions and 40 deletions

View file

@ -91,8 +91,6 @@ const loginError = ref("");
const isFormValid = computed(() => email.value && email.value.includes("@"));
await checkMemberStatus();
const handleLogin = async () => {
if (isLoggingIn.value) return;