diff --git a/packages/frontend/src/pages/admin/bot-protection.vue b/packages/frontend/src/pages/admin/bot-protection.vue
index 07a744a6d5..24cf8a9ef0 100644
--- a/packages/frontend/src/pages/admin/bot-protection.vue
+++ b/packages/frontend/src/pages/admin/bot-protection.vue
@@ -13,7 +13,7 @@ SPDX-License-Identifier: AGPL-3.0-only
Turnstile
testCaptcha
{{ i18n.ts.none }} ({{ i18n.ts.notRecommended }})
-
+
@@ -145,7 +145,8 @@ const turnstileResponse = ref(null);
const testCaptchaResponse = ref(null);
const canSaving = computed((): boolean => {
- return (botProtectionForm.state.provider === 'hcaptcha' && !!hCaptchaResponse.value) ||
+ return (botProtectionForm.state.provider === null) ||
+ (botProtectionForm.state.provider === 'hcaptcha' && !!hCaptchaResponse.value) ||
(botProtectionForm.state.provider === 'mcaptcha' && !!mCaptchaResponse.value) ||
(botProtectionForm.state.provider === 'recaptcha' && !!reCaptchaResponse.value) ||
(botProtectionForm.state.provider === 'turnstile' && !!turnstileResponse.value) ||