From 6405e9f43f7cec2c7cb9248fae6038ff12df85c8 Mon Sep 17 00:00:00 2001
From: Naor Peled
Date: Sat, 24 Dec 2022 03:37:10 +0200
Subject: [PATCH] cleanup
---
frontend/pages/signup.tsx | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/frontend/pages/signup.tsx b/frontend/pages/signup.tsx
index d1eacaff2..8ca92aea7 100644
--- a/frontend/pages/signup.tsx
+++ b/frontend/pages/signup.tsx
@@ -255,14 +255,13 @@ export default function SignUp() {
-
-
);
// Step 2 of the signup process (enter the email verification code)
const step2 = (
-
);
// Step 3 of the signup process (enter the rest of the impformation)
const step3 = (
-
);
// Step 4 of the sign up process (download the emergency kit pdf)
const step4 = (
-
);
return (
@@ -565,7 +557,9 @@ export default function SignUp() {
/>
- {step == 1 ? step1 : step == 2 ? step2 : step == 3 ? step3 : step4}
+
);