From 41a08a0381dbb5943b3833eb4944fe1bb45b94a4 Mon Sep 17 00:00:00 2001 From: Joe Karow <58997957+JoeKarow@users.noreply.github.com> Date: Tue, 5 Dec 2023 11:25:44 -0500 Subject: [PATCH] fix type error --- apps/app/src/pages/search/[...params]/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app/src/pages/search/[...params]/index.tsx b/apps/app/src/pages/search/[...params]/index.tsx index 0b1e6e065d..a2a763242b 100644 --- a/apps/app/src/pages/search/[...params]/index.tsx +++ b/apps/app/src/pages/search/[...params]/index.tsx @@ -181,7 +181,7 @@ const SearchResults = () => { }) } if (queryParams.success && !compare(queryParams.data, searchState.params)) { - searchStateActions.setParams(queryParams.data) + searchStateActions.setParams(queryParams.data.map((x) => x.toString())) } // eslint-disable-next-line react-hooks/exhaustive-deps }, [])