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}
+
);