From b02b23a97816720b989e4ab576a89a13f5f562d0 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Thu, 21 Sep 2023 15:05:21 +0200 Subject: [PATCH] Fix signup mismatch --- front/views/SignupView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/views/SignupView.tsx b/front/views/SignupView.tsx index 8d8c4a1..30bcb00 100644 --- a/front/views/SignupView.tsx +++ b/front/views/SignupView.tsx @@ -178,8 +178,8 @@ const SignupView = () => { try { const resp = await onSubmit( formData.username.value, + formData.email.value, formData.password.value, - formData.email.value ); toast.show({ description: resp, colorScheme: 'secondary' }); } catch (e) {