fix: minor display correction

This commit is contained in:
Maël Gangloff
2024-12-29 23:19:47 +01:00
parent b340cd3676
commit a1bad26f1d

View File

@@ -72,16 +72,10 @@ export function DomainResult({domain}: { domain: Domain }) {
{domain.status.length > 0 && {domain.status.length > 0 &&
<> <>
<Divider orientation="left">{t`EPP Status Codes`}</Divider> <Divider orientation="left">{t`EPP Status Codes`}</Divider>
{ <Flex gap="4px 0" wrap>
serverStatus && <Flex gap="4px 0" wrap> {serverStatus.map(statusToTag)}
{serverStatus.map(statusToTag)} {clientStatus.map(statusToTag)}
</Flex> </Flex>
}
{
clientStatus && <Flex gap="4px 0" wrap>
{clientStatus.map(statusToTag)}
</Flex>
}
</> </>
} }
{ {