diff --git a/src/components/input/SelectInput.tsx b/src/components/input/SelectInput.tsx index c1736fc5..f954bc20 100644 --- a/src/components/input/SelectInput.tsx +++ b/src/components/input/SelectInput.tsx @@ -523,7 +523,7 @@ const useSelect = ( const qs = new URLSearchParams({ ...(params ?? {}), - [searchKey]: inputValue ?? '', + [searchKey ? searchKey : 'search']: inputValue ?? '', [pageKey]: String(pageIndex + 1), [limitKey]: String(limit), }).toString();