diff --git a/src/utils/restClient/index.ts b/src/utils/restClient/index.ts index 429d7e4..2e86514 100644 --- a/src/utils/restClient/index.ts +++ b/src/utils/restClient/index.ts @@ -20,7 +20,7 @@ class RestClient { const searchParams = new URLSearchParams(); for (const key in queryParams) { - if (Object.prototype.hasOwnProperty.call(queryParams, key)) { + if (Object.prototype.hasOwnProperty.call(queryParams,key) && typeof queryParams[key] !== 'undefined') { searchParams.append(key, queryParams[key].toString()); } }