Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeKarow committed Dec 5, 2023
1 parent b67d959 commit 41a08a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/app/src/pages/search/[...params]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
}, [])
Expand Down

1 comment on commit 41a08a0

@vercel
Copy link

@vercel vercel bot commented on 41a08a0 Dec 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.