Commit 089ef89e authored by tom's avatar tom

fix condition

parent 283e2920
...@@ -11,7 +11,7 @@ interface Props { ...@@ -11,7 +11,7 @@ interface Props {
const NameDomainDetailsAlert = ({ data }: Props) => { const NameDomainDetailsAlert = ({ data }: Props) => {
if (!data?.stored_offchain || !data?.resolved_with_wildcard) { if (!data?.stored_offchain && !data?.resolved_with_wildcard) {
return null; return null;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment