From 27e88e302f42635770e02596a24c508df8d8bc4d Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 21 Nov 2020 18:47:34 -0600 Subject: [PATCH] Reduce chuck size to 25 --- components/search.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/search.vue b/components/search.vue index 25cbfb0..21ede03 100644 --- a/components/search.vue +++ b/components/search.vue @@ -247,7 +247,7 @@ export default { ...this.results ] - const size = 50 + const size = 25 const chunks = [] while (results.length > 0)