diff --git a/src/app/screens/Options/TestConnection/card.tsx b/src/app/screens/Options/TestConnection/card.tsx index d9ef86f4d9..460e044968 100644 --- a/src/app/screens/Options/TestConnection/card.tsx +++ b/src/app/screens/Options/TestConnection/card.tsx @@ -1,5 +1,6 @@ type Props = { alias: string; + accountName: string; satoshis: string; fiat?: string; color: string; @@ -8,19 +9,21 @@ type Props = { export default function TestConnectionResultCard({ alias, + accountName, satoshis, fiat, color, currency, }: Props) { return ( -
-

{alias}

-

- {satoshis} -

+
+

{accountName}

+

{alias}

+

{satoshis}

{fiat && currency && ( -

+

{fiat} {currency}

)} diff --git a/src/app/screens/Options/TestConnection/index.tsx b/src/app/screens/Options/TestConnection/index.tsx index 7a72cd0c48..4e5464d81e 100644 --- a/src/app/screens/Options/TestConnection/index.tsx +++ b/src/app/screens/Options/TestConnection/index.tsx @@ -1,5 +1,6 @@ import Button from "@components/Button"; import Loading from "@components/Loading"; +import { PopiconsBadgeCheckSolid } from "@popicons/react"; import { useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; import { useNavigate } from "react-router-dom"; @@ -106,15 +107,9 @@ export default function TestConnection() { {accountInfo && accountInfo.alias && (
-
-

- {tCommon("success")} -

- image +
+ +

{tCommon("success")}

@@ -123,7 +118,8 @@ export default function TestConnection() {