From 111370c025a680c01452fca233df1cc21649ce14 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 22 Jun 2021 10:56:38 +0200 Subject: [PATCH] Fix email login --- src/routes/index.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/index.svelte b/src/routes/index.svelte index ee18285f7..638447f43 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -40,10 +40,10 @@ password } }); - browser && location.reload(); } catch (error) { browser && toast.push(error.error || error || 'Ooops something went wrong.'); } finally { + browser && location.reload(); loading = false; } }