Skip to content

Commit

Permalink
fix(base): restore default limit for weighted search
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoerge committed Jan 7, 2022
1 parent e347bb6 commit 7abc8c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export function createWeightedSearch(
{
...toGroqParams(terms),
__types: searchSpec.map((spec) => spec.typeName),
__limit: searchOpts.limit ?? 100,
__limit: searchOpts.limit ?? 1000,
...(params || {}),
},
{tag}
Expand Down

0 comments on commit 7abc8c3

Please sign in to comment.