diff --git a/src/pages/login.tsx b/src/pages/login.tsx
index 469c2f2..35d7cfe 100644
--- a/src/pages/login.tsx
+++ b/src/pages/login.tsx
@@ -76,12 +76,10 @@ export default function Login() {
0 || isSubmitting) ? "" : " bg-yellow-400")}>
Continue with Email
-
- {sentAt <= 0 && isSubmitting ? "Sending email..." : ""}
+ {sentAt <= 0 && isSubmitting ? (
Sending email...
) : ""}
{sentAt > 0 ? (
- `Check you email for login link${ left > 0 ? `, get another link in ${left} seconds` : null }`
+ (
Check you email for login link{ left > 0 ? `, get another link in ${left} seconds` : null }
)
) : null}
-
)}