We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c117fa7 commit b19e8e7Copy full SHA for b19e8e7
src/components/react/SearchDialog.tsx
@@ -352,9 +352,9 @@ export const SearchDialog: React.FC<SearchDialogProps> = ({
352
return;
353
}
354
355
- // Load first 6 page results
+ // Load first 10 page results
356
const loadedResults = await Promise.all(
357
- search.results.slice(0, 6).map((r) => r.data()),
+ search.results.slice(0, 10).map((r) => r.data()),
358
);
359
360
// Final check before setting state
0 commit comments