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" })}
);