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> <InfoSection>
<InfoSectionTitle>{t("type")}</InfoSectionTitle> <InfoSectionTitle>{t("type")}</InfoSectionTitle>
<InfoSectionContent> <InfoSectionContent>
<span> <span>{getTypeDisplay(type ? type : "")}</span>
{getTypeDisplay(type ? type : "")}
</span>
</InfoSectionContent> </InfoSectionContent>
</InfoSection> </InfoSection>
<InfoSection> <InfoSection>
<InfoSectionTitle>{t("status")}</InfoSectionTitle> <InfoSectionTitle>{t("status")}</InfoSectionTitle>
<InfoSectionContent> <InfoSectionContent>
{failed ? ( {failed ? (
<Badge variant="red" className="ml-2"> <Badge variant="red">
{t("failed", { fallback: "Failed" })} {t("failed", { fallback: "Failed" })}
</Badge> </Badge>
) : verified ? ( ) : verified ? (

View File

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