diff options
Diffstat (limited to 'web_src/js/features/captcha.js')
-rw-r--r-- | web_src/js/features/captcha.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web_src/js/features/captcha.js b/web_src/js/features/captcha.js index 3da5dbda41..c803a5006b 100644 --- a/web_src/js/features/captcha.js +++ b/web_src/js/features/captcha.js @@ -9,7 +9,7 @@ export async function initCaptcha() { const params = { sitekey: siteKey, - theme: isDark ? 'dark' : 'light' + theme: isDark ? 'dark' : 'light', }; switch (captchaEl.getAttribute('data-captcha-type')) { @@ -42,7 +42,7 @@ export async function initCaptcha() { siteKey: { instanceUrl: new URL(instanceURL), key: siteKey, - } + }, }); break; } |