From 052c5909c6b203b820464eadcd9d3bba6c46181c Mon Sep 17 00:00:00 2001 From: Christomatt Date: Mon, 26 Jan 2026 18:15:19 +0100 Subject: [PATCH] Fixed build error --- src/app/login/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 3e580e4..ac63150 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -518,7 +518,7 @@ export default function LoginPage() { type="submit" className="btn btn-primary btn-lg" style={{ width: '100%' }} - disabled={loading || (nodeInfo.turnstileSiteKey && !turnstileToken)} + disabled={loading || (!!nodeInfo.turnstileSiteKey && !turnstileToken)} > {loading ? 'Please wait...' : (mode === 'login' ? 'Login' : 'Create Account')}