This commit is contained in:
Ivan Evans 2025-01-05 14:20:27 -07:00
parent 1d8bf516ec
commit 7a681c2e10
3 changed files with 3 additions and 3 deletions

View file

@ -203,6 +203,7 @@
"backendLabel": "Destination Backend URL", "backendLabel": "Destination Backend URL",
"recaptchaLabel": "ReCaptcha Key (Optional)", "recaptchaLabel": "ReCaptcha Key (Optional)",
"toggleLable": "Needs ReCaptcha?", "toggleLable": "Needs ReCaptcha?",
"loginRequired": "You must be logged in to migrate your data! Please go back and login to continue.",
"status": { "status": {
"error": "Failed to migrate your data. 😿", "error": "Failed to migrate your data. 😿",
"success": "Your data has been migrated successfully! 🎉" "success": "Your data has been migrated successfully! 🎉"

View file

@ -155,8 +155,7 @@ export function MigrationDirectPage() {
) : ( ) : (
<div className="flex flex-col items-center text-center mb-8"> <div className="flex flex-col items-center text-center mb-8">
<Paragraph className="max-w-[320px] text-md"> <Paragraph className="max-w-[320px] text-md">
You must be logged in to migrate your data! Please go back and {t("migration.loginRequired")}
login to continue.
</Paragraph> </Paragraph>
<Button <Button
theme="purple" theme="purple"

View file

@ -9,7 +9,7 @@ import { MwLink } from "@/components/text/Link";
import { AuthInputBox } from "@/components/text-inputs/AuthInputBox"; import { AuthInputBox } from "@/components/text-inputs/AuthInputBox";
import { Divider } from "@/components/utils/Divider"; import { Divider } from "@/components/utils/Divider";
import { Heading1 } from "@/components/utils/Text"; import { Heading1 } from "@/components/utils/Text";
import { SetupPart } from "@/pages/parts/settings/SetupPart"; // import { SetupPart } from "@/pages/parts/settings/SetupPart";
import { useAuthStore } from "@/stores/auth"; import { useAuthStore } from "@/stores/auth";
interface ProxyEditProps { interface ProxyEditProps {