diff options
Diffstat (limited to 'app/src/components/Signup.tsx')
-rw-r--r-- | app/src/components/Signup.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/components/Signup.tsx b/app/src/components/Signup.tsx index 0822c46..300f189 100644 --- a/app/src/components/Signup.tsx +++ b/app/src/components/Signup.tsx @@ -66,9 +66,9 @@ function Signup() { <Navbar /> <div className={styles.container}> <h1>Create Account</h1> - <h2 className={error ? styles.errorVisible : styles.errorHidden}> + <p className={error ? styles.errorVisible : styles.errorHidden}> {error} - </h2> + </p> <hr></hr> <form onSubmit={handleSubmit}> <input |