From 2ac5b0527a59b7ece19231971219061baf10d817 Mon Sep 17 00:00:00 2001 From: Greg Shuflin Date: Mon, 13 Sep 2021 01:36:16 -0700 Subject: [PATCH] Fix weird type bug --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index c39da0b..29ae225 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -56,7 +56,7 @@ function buildRequest(searchTerm: string, conlang: Conlang, direction: SearchDir ["order", conlangSpec], ["limit", limit], ["offset", offset], - ]); + ] as string[][]); const effectiveUri = `${backendUrl}/${conlangDb}?${params}`;