Skip to content

Commit

Permalink
fix: minor display correction
Browse files Browse the repository at this point in the history
  • Loading branch information
maelgangloff committed Dec 29, 2024
1 parent b340cd3 commit a1bad26
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions assets/components/search/DomainResult.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,10 @@ export function DomainResult({domain}: { domain: Domain }) {
{domain.status.length > 0 &&
<>
<Divider orientation="left">{t`EPP Status Codes`}</Divider>
{
serverStatus && <Flex gap="4px 0" wrap>
{serverStatus.map(statusToTag)}
</Flex>
}
{
clientStatus && <Flex gap="4px 0" wrap>
{clientStatus.map(statusToTag)}
</Flex>
}
<Flex gap="4px 0" wrap>
{serverStatus.map(statusToTag)}
{clientStatus.map(statusToTag)}
</Flex>
</>
}
{
Expand Down

0 comments on commit a1bad26

Please sign in to comment.