diff --git a/src/components/Search.tsx b/src/components/Search.tsx index 2bdbf8e..92096cb 100644 --- a/src/components/Search.tsx +++ b/src/components/Search.tsx @@ -36,6 +36,7 @@ export default function SearchBar({ searchList }: Props) { const fuse = new Fuse(searchList, { keys: ["title", "description"], includeMatches: true, + minMatchCharLength: 2, threshold: 0.5, });