From 40cd1af74cdceba8182a1d89acaa7674e6ceee4c Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Sat, 8 Mar 2025 16:10:07 +0200 Subject: [PATCH 1/2] Update SearchModal.tsx --- components/SearchField/SearchModal/SearchModal.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 From 8bb7cc5d89dbd2b14e419fe02d32d31ac5cfe7f2 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Sat, 8 Mar 2025 16:11:19 +0200 Subject: [PATCH 2/2] Update 2024-04-30-dkg-for-multi-sig.mdx --- content/blog/2024-04-30-dkg-for-multi-sig.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] ---