From b2d7ae83b57cfb2f0446a751866c4e6400c93182 Mon Sep 17 00:00:00 2001 From: awildturtok <1553491+awildturtok@users.noreply.github.com> Date: Tue, 5 Mar 2024 14:59:46 +0100 Subject: [PATCH] adds missing `?` to arrow fetch url --- frontend/src/js/api/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/js/api/api.ts b/frontend/src/js/api/api.ts index c65c20471b..04138e7c67 100644 --- a/frontend/src/js/api/api.ts +++ b/frontend/src/js/api/api.ts @@ -420,7 +420,7 @@ export const useGetResult = () => { return useCallback( (queryId: string, limit = 1000) => { const url = - `/result/arrow/${queryId}.arrs` + + `/result/arrow/${queryId}.arrs?` + new URLSearchParams({ limit: limit.toString() }); const res = fetch(getProtectedUrl(url), { headers: {