mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-14 12:20:20 +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")}
|
||||
</Button>
|
||||
<p className="text-green-600 mt-4">
|
||||
{t("migration.direct.status.success")}
|
||||
</p>
|
||||
</div>
|
||||
)}
|
||||
|
||||
</div>
|
||||
<div className="flex justify-center">
|
||||
{status === "success" && (
|
||||
<p className="text-green-600 mt-4">
|
||||
{t("migration.direct.status.success")}
|
||||
</p>
|
||||
)}
|
||||
{status === "error" && (
|
||||
<p className="text-red-600 mt-4">
|
||||
{t("migration.direct.status.error")}
|
||||
|
|
|
|||
Loading…
Reference in a new issue