From 9b4d1948be76173f48fde7052a02d5af660d6f98 Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Fri, 16 Sep 2022 09:08:13 +0630 Subject: [PATCH] Update threshold to 4.0 --- src/components/Search.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Search.tsx b/src/components/Search.tsx index 4b7d164..cf2fc6e 100644 --- a/src/components/Search.tsx +++ b/src/components/Search.tsx @@ -36,7 +36,7 @@ export default function SearchBar({ searchList }: Props) { const fuse = new Fuse(searchList, { keys: ["title", "description"], includeMatches: true, - threshold: 0.3, + threshold: 0.4, }); useEffect(() => {