Skip to content

Commit 2cee39a

Browse files
committed
Increase limit number of works to be fetched to 10'000
1 parent 1aa487d commit 2cee39a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/search.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const Search = () => {
8888
disabled: () => !isValidURL(url.val),
8989
onclick: async () => {
9090
showProgress.val = true;
91-
const { works } = await fetchWorks(cleanURL(url.rawVal), 100);
91+
const { works } = await fetchWorks(cleanURL(url.rawVal), 10000);
9292
corpus.val = processWorks(works);
9393
filters.val = getFilters(corpus.val);
9494
navigate("/filters");

0 commit comments

Comments
 (0)