Fix weird type bug

This commit is contained in:
Greg Shuflin 2021-09-13 01:36:16 -07:00
parent 5b3355a651
commit 2ac5b0527a
1 changed files with 1 additions and 1 deletions

View File

@ -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}`;