Skip to content

Commit b19e8e7

Browse files
committed
Increase initial search results from 6 to 10
1 parent c117fa7 commit b19e8e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/react/SearchDialog.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,9 +352,9 @@ export const SearchDialog: React.FC<SearchDialogProps> = ({
352352
return;
353353
}
354354

355-
// Load first 6 page results
355+
// Load first 10 page results
356356
const loadedResults = await Promise.all(
357-
search.results.slice(0, 6).map((r) => r.data()),
357+
search.results.slice(0, 10).map((r) => r.data()),
358358
);
359359

360360
// Final check before setting state

0 commit comments

Comments
 (0)