summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Nedbal <github-bf215181b5140522137b3d4f6b73544a@desu.email>2022-05-14 16:24:45 +0200
committerGitHub <noreply@github.com>2022-05-14 23:24:45 +0900
commit657dc1599596f39a254fe6b37a2c4c631282409b (patch)
tree0cbdcce552419cc27482888a935a4bc168b5e6c9
parentRefactor admin/email-settings to use Composition API (#8656) (diff)
downloadmisskey-657dc1599596f39a254fe6b37a2c4c631282409b.tar.gz
misskey-657dc1599596f39a254fe6b37a2c4c631282409b.tar.bz2
misskey-657dc1599596f39a254fe6b37a2c4c631282409b.zip
fix(client): remove unexpected token (#8672)
Diffstat (limited to '')
-rw-r--r--packages/client/src/pages/admin/bot-protection.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/pages/admin/bot-protection.vue b/packages/client/src/pages/admin/bot-protection.vue
index 4675b2bc08..30fee5015a 100644
--- a/packages/client/src/pages/admin/bot-protection.vue
+++ b/packages/client/src/pages/admin/bot-protection.vue
@@ -56,7 +56,7 @@ import { fetchInstance } from '@/instance';
const MkCaptcha = defineAsyncComponent(() => import('@/components/captcha.vue'));
-let provider: = $ref(null);
+let provider = $ref(null);
let hcaptchaSiteKey: string | null = $ref(null);
let hcaptchaSecretKey: string | null = $ref(null);
let recaptchaSiteKey: string | null = $ref(null);