Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/SearchField/SearchModal/SearchModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<Modal isOpen={isOpen} onClose={handleClose}>
Expand Down Expand Up @@ -126,7 +126,7 @@ export function SearchModal({ domain, suggestions, isOpen, onClose }: Props) {
</SearchSection.Item>
);
})}
{showNoReultsFound && (
{showNoResultsFound && (
<Text textAlign="center" py={4}>
No results found
</Text>
Expand Down
2 changes: 1 addition & 1 deletion content/blog/2024-04-30-dkg-for-multi-sig.mdx
Original file line number Diff line number Diff line change
@@ -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]
---
Expand Down