From 02e422f3cefc49168345772708d8c60d0133a6cd Mon Sep 17 00:00:00 2001 From: Cyrus Goh Date: Thu, 12 Dec 2024 12:41:44 +0800 Subject: [PATCH] dispatch email for subheading --- web-auth/src/components/Auth.svelte | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web-auth/src/components/Auth.svelte b/web-auth/src/components/Auth.svelte index 2294a321e1b..b05a26e2120 100644 --- a/web-auth/src/components/Auth.svelte +++ b/web-auth/src/components/Auth.svelte @@ -85,7 +85,9 @@ } } - function processEmailSubmission() { + function processEmailSubmission(event: any) { + email = event.detail.email; + step = AuthStep.SignUp; }