Skip to content

Commit

Permalink
fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
tom2drum committed Aug 22, 2024
1 parent 283e292 commit 089ef89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/nameDomain/details/NameDomainDetailsAlert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface Props {

const NameDomainDetailsAlert = ({ data }: Props) => {

if (!data?.stored_offchain || !data?.resolved_with_wildcard) {
if (!data?.stored_offchain && !data?.resolved_with_wildcard) {
return null;
}

Expand Down

0 comments on commit 089ef89

Please sign in to comment.