diff --git a/components/SearchField/SearchModal/SearchModal.tsx b/components/SearchField/SearchModal/SearchModal.tsx index 117d430c..84aa1622 100644 --- a/components/SearchField/SearchModal/SearchModal.tsx +++ b/components/SearchField/SearchModal/SearchModal.tsx @@ -66,8 +66,8 @@ export function SearchModal({ domain, suggestions, isOpen, onClose }: Props) { const hasQuery = debouncedQuery.length > 0; const showResults = hasQuery && !isLoading && data?.length > 0; - const showNoReultsFound = hasQuery && !isLoading && data?.length === 0; - const showSuggested = !!suggestions && (!hasQuery || showNoReultsFound); + const showNoResultsFound = hasQuery && !isLoading && data?.length === 0; + const showSuggested = !!suggestions && (!hasQuery || showNoResultsFound); return ( @@ -126,7 +126,7 @@ export function SearchModal({ domain, suggestions, isOpen, onClose }: Props) { ); })} - {showNoReultsFound && ( + {showNoResultsFound && ( No results found diff --git a/content/blog/2024-04-30-dkg-for-multi-sig.mdx b/content/blog/2024-04-30-dkg-for-multi-sig.mdx index bae97779..0bee1529 100644 --- a/content/blog/2024-04-30-dkg-for-multi-sig.mdx +++ b/content/blog/2024-04-30-dkg-for-multi-sig.mdx @@ -1,7 +1,7 @@ --- author: iflabs title: "Announcing Distributed Key Generation for multisig" -description: "Iron Fish multisignature wallets now supports Distrubuted Key Generation (DKG) in addition to Trusted Dealer Key Generation (TDK)." +description: "Iron Fish multisignature wallets now supports Distributed Key Generation (DKG) in addition to Trusted Dealer Key Generation (TDK)." image: /images/blog/dkg.png tags: [ironfish, iron fish, multi-sig, multi sig, multi-sig wallets] ---