diff --git a/src/modules/market/views/MarketPage.vue b/src/modules/market/views/MarketPage.vue index 1c972cc..b5d55f7 100644 --- a/src/modules/market/views/MarketPage.vue +++ b/src/modules/market/views/MarketPage.vue @@ -283,7 +283,7 @@ const searchOptions: FuzzySearchOptions = { { name: 'description', weight: 0.3 }, // Description provides context { name: 'categories', weight: 0.4 } // Categories help with discovery ], - threshold: 0.6, // More tolerant of typos (0.0 = perfect match, 1.0 = match anything) + threshold: 0.4, // More tolerant of typos (0.0 = perfect match, 1.0 = match anything) ignoreLocation: true, // Don't care about where in the string the match is findAllMatches: true, // Find all matches, not just the first minMatchCharLength: 2, // Minimum length of a matched character sequence