linter fixes
Some checks failed
Check / Lint and Check (push) Has been cancelled

This commit is contained in:
2025-11-15 15:28:19 +01:00
parent bf51e2f16b
commit ab3e044a44
4 changed files with 46 additions and 84 deletions

View File

@@ -41,7 +41,7 @@ export default function SignUp() {
// Double-check signup isn't blocked before submitting
const currentStatus = isSignupBlocked();
if (currentStatus.blocked) {
setResponse(currentStatus.message || "Sign-ups are currently closed.");
setResponse(currentStatus.message ?? "Sign-ups are currently closed.");
return;
}
setSubmitted(true);