diff --git a/src/assets/locales/en.json b/src/assets/locales/en.json index ff09b54c..0b3fe254 100644 --- a/src/assets/locales/en.json +++ b/src/assets/locales/en.json @@ -457,7 +457,7 @@ "shortRemaining": "-{{timeLeft}}" }, "turnstile": { - "description": "Please prove your humanity by completing the quick Captcha on the right. This is to keep sudo-flix safe!", + "description": "Please prove your humanity by completing the quick challenge, this is to keep sudo-flix safe.", "error": "Failed to verify your humanity! Please try again.", "title": "Are You a Robot 🤖?", "verifyingHumanity": "Verifying your humanity... (^▽^)👍" diff --git a/src/index.tsx b/src/index.tsx index 6e8dde22..1ef9d409 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -29,7 +29,6 @@ import { changeAppLanguage, useLanguageStore } from "@/stores/language"; import { ProgressSyncer } from "@/stores/progress/ProgressSyncer"; import { SettingsSyncer } from "@/stores/subtitles/SettingsSyncer"; import { ThemeProvider } from "@/stores/theme"; -import { TurnstileProvider } from "@/stores/turnstile"; import { extensionInfo, diff --git a/src/stores/turnstile/index.tsx b/src/stores/turnstile/index.tsx index f6452d91..d063f53d 100644 --- a/src/stores/turnstile/index.tsx +++ b/src/stores/turnstile/index.tsx @@ -74,7 +74,6 @@ export function isTurnstileInitialized() { } export async function getTurnstileToken() { - const turnstile = getTurnstile(); try { const token = await useTurnstileStore.getState().getToken();