mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-21 11:52:22 +00:00
fix error text on direct migration
This commit is contained in:
parent
0295b8410d
commit
117ab989bf
1 changed files with 7 additions and 4 deletions
|
|
@ -120,12 +120,15 @@ export function MigrationDirectPage() {
|
||||||
>
|
>
|
||||||
{t("migration.direct.button.login")}
|
{t("migration.direct.button.login")}
|
||||||
</Button>
|
</Button>
|
||||||
<p className="text-green-600 mt-4">
|
|
||||||
{t("migration.direct.status.success")}
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-center">
|
||||||
|
{status === "success" && (
|
||||||
|
<p className="text-green-600 mt-4">
|
||||||
|
{t("migration.direct.status.success")}
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
{status === "error" && (
|
{status === "error" && (
|
||||||
<p className="text-red-600 mt-4">
|
<p className="text-red-600 mt-4">
|
||||||
{t("migration.direct.status.error")}
|
{t("migration.direct.status.error")}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue