fix: mark email <input> as required

This commit is contained in:
ascpixi 2025-11-17 13:38:07 -05:00
parent 6612850c68
commit 8f832dfb88

View file

@ -113,6 +113,7 @@ function App() {
>
<img src="/icons/email.svg" alt="" className="w-6 h-5 flex-shrink-0 select-none" />
<input
required
ref={emailRef}
value={email}
onChange={e => setEmail(e.target.value)}