dont require account for upload (temp)

This commit is contained in:
Pas 2025-07-14 16:44:43 -06:00
parent 59da290b1a
commit cdf18f08c6

View file

@ -175,7 +175,6 @@ export function MigrationUploadPage() {
<MinimalPageLayout>
<PageTitle k="migration.upload.title" subpage />
<CenterContainer>
{user.account ? (
<div>
<Stepper current={2} steps={2} className="mb-12" />
<Heading2 className="!text-4xl !mt-0">
@ -317,20 +316,6 @@ export function MigrationUploadPage() {
)}
</div>
</div>
) : (
<div className="flex flex-col items-center text-center mb-8">
<Paragraph className="max-w-[320px] text-md">
{t("migration.loginRequired")}
</Paragraph>
<Button
theme="purple"
className="mt-4"
onClick={() => navigate("/")}
>
{t("migration.download.button.home")}
</Button>
</div>
)}
</CenterContainer>
</MinimalPageLayout>
);