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

View file

@ -203,6 +203,7 @@
"backendLabel": "Destination Backend URL",
"recaptchaLabel": "ReCaptcha Key (Optional)",
"toggleLable": "Needs ReCaptcha?",
"loginRequired": "You must be logged in to migrate your data! Please go back and login to continue.",
"status": {
"error": "Failed to migrate your data. 😿",
"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">
<Paragraph className="max-w-[320px] text-md">
You must be logged in to migrate your data! Please go back and
login to continue.
{t("migration.loginRequired")}
</Paragraph>
<Button
theme="purple"

View file

@ -9,7 +9,7 @@ import { MwLink } from "@/components/text/Link";
import { AuthInputBox } from "@/components/text-inputs/AuthInputBox";
import { Divider } from "@/components/utils/Divider";
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";
interface ProxyEditProps {