Skip to content

Commit

Permalink
fix: message showcases
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanjoshi914 committed Oct 10, 2024
1 parent 8bca367 commit 3b059bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/screens/Options/TestConnection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,7 @@ export default function TestConnection() {
</div>

<p className="mt-6 dark:text-gray-400"></p>
<p className="mt-6 dark:text-neutral-400">{t("ready")}</p>

{account?.nodeRequired && (
{account?.nodeRequired ? (
<div className="mt-6">
<Alert type="info">
<div className="flex items-center gap-2">
Expand All @@ -144,9 +142,11 @@ export default function TestConnection() {
</div>
</Alert>
</div>
) : (
<p className="mt-6 dark:text-neutral-400">{t("ready")}</p>
)}

<div className="mt-6">
<div className="mt-6 lg:grid lg:grid-cols-2">
<TestConnectionResultCard
color="bg-gray-100"
accountName={accountInfo.name}
Expand Down

0 comments on commit 3b059bc

Please sign in to comment.