diff options
| author | Ashley Graves <agraves@incest.world> | 2024-02-24 17:15:24 +0000 |
|---|---|---|
| committer | Ashley Graves <agraves@incest.world> | 2024-02-24 17:15:24 +0000 |
| commit | 17df852c331e32cbea79c85c67cc7e047a80009c (patch) | |
| tree | 326d45750428bd6cdda0cf93bf93bf528c99a759 /packages/frontend/src | |
| parent | Update index.vue - Also check enableMcaptcha for noBotProtection (diff) | |
| download | sharkey-17df852c331e32cbea79c85c67cc7e047a80009c.tar.gz sharkey-17df852c331e32cbea79c85c67cc7e047a80009c.tar.bz2 sharkey-17df852c331e32cbea79c85c67cc7e047a80009c.zip | |
Update index.vue - I'm dumb sorry
Diffstat (limited to 'packages/frontend/src')
| -rw-r--r-- | packages/frontend/src/pages/admin/index.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/admin/index.vue b/packages/frontend/src/pages/admin/index.vue index d2d4e8be97..0fd073dd0d 100644 --- a/packages/frontend/src/pages/admin/index.vue +++ b/packages/frontend/src/pages/admin/index.vue @@ -59,7 +59,7 @@ const view = ref(null); const el = ref<HTMLDivElement | null>(null); const pageProps = ref({}); let noMaintainerInformation = isEmpty(instance.maintainerName) || isEmpty(instance.maintainerEmail); -let noBotProtection = !instance.disableRegistration && !instance.enableHcaptcha && !instance.enableRecaptcha&& && !instance.enableMcaptcha && !instance.enableTurnstile; +let noBotProtection = !instance.disableRegistration && !instance.enableHcaptcha && !instance.enableRecaptcha && !instance.enableMcaptcha && !instance.enableTurnstile; let noEmailServer = !instance.enableEmail; const thereIsUnresolvedAbuseReport = ref(false); const pendingUserApprovals = ref(false); |