From 35c93f38e027312840519645d55842ae76c4cec5 Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 30 Oct 2025 17:32:03 -0700 Subject: [PATCH] Fix small ui issues --- src/components/DomainInfoCard.tsx | 6 ++---- src/components/DomainsTable.tsx | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/components/DomainInfoCard.tsx b/src/components/DomainInfoCard.tsx index c2d9fe53..b5de6cd3 100644 --- a/src/components/DomainInfoCard.tsx +++ b/src/components/DomainInfoCard.tsx @@ -43,16 +43,14 @@ export default function DomainInfoCard({ {t("type")} - - {getTypeDisplay(type ? type : "")} - + {getTypeDisplay(type ? type : "")} {t("status")} {failed ? ( - + {t("failed", { fallback: "Failed" })} ) : verified ? ( diff --git a/src/components/DomainsTable.tsx b/src/components/DomainsTable.tsx index e562148e..3e12bab5 100644 --- a/src/components/DomainsTable.tsx +++ b/src/components/DomainsTable.tsx @@ -198,7 +198,7 @@ export default function DomainsTable({ domains, orgId }: Props) { ); } else if (failed) { return ( - + {t("failed", { fallback: "Failed" })} );