Skip to content

Commit

Permalink
fix domain linkage
Browse files Browse the repository at this point in the history
  • Loading branch information
eike-hass committed Jun 21, 2024
1 parent 644b21e commit a714e38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/components/DomainCheck.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const DomainCheck = ({ result }: {
}) => {
return (
<>
{result.valid.length &&
{result.valid?.length &&
<List
itemLayout="horizontal"
dataSource={result.valid}
Expand All @@ -23,7 +23,7 @@ const DomainCheck = ({ result }: {
/>
}

{result.invalid.length &&
{result.invalid?.length &&
<List
itemLayout="horizontal"
dataSource={result.invalid}
Expand Down

0 comments on commit a714e38

Please sign in to comment.