Fix small ui issues

This commit is contained in:
Owen
2025-10-30 17:32:03 -07:00
parent f60c2f4fb9
commit 35c93f38e0
2 changed files with 3 additions and 5 deletions

View File

@@ -43,16 +43,14 @@ export default function DomainInfoCard({
<InfoSection>
<InfoSectionTitle>{t("type")}</InfoSectionTitle>
<InfoSectionContent>
<span>
{getTypeDisplay(type ? type : "")}
</span>
<span>{getTypeDisplay(type ? type : "")}</span>
</InfoSectionContent>
</InfoSection>
<InfoSection>
<InfoSectionTitle>{t("status")}</InfoSectionTitle>
<InfoSectionContent>
{failed ? (
<Badge variant="red" className="ml-2">
<Badge variant="red">
{t("failed", { fallback: "Failed" })}
</Badge>
) : verified ? (

View File

@@ -198,7 +198,7 @@ export default function DomainsTable({ domains, orgId }: Props) {
);
} else if (failed) {
return (
<Badge variant="destructive">
<Badge variant="red">
{t("failed", { fallback: "Failed" })}
</Badge>
);