Correction du demarrage apres la modal d'authentification

This commit is contained in:
2026-04-13 23:12:00 +02:00
parent 740074c49e
commit aac7977620
2 changed files with 37 additions and 20 deletions

View File

@@ -66,7 +66,14 @@
}
await Task.Delay(700);
await JS.InvokeVoidAsync("chesscubingAuthModal.notifyParent", status);
try
{
await JS.InvokeVoidAsync("chesscubingAuthModal.notifyParent", status);
}
catch
{
}
}
private static string NormalizeReturnUrl(string? returnUrl)