diff --git a/app/common/helpers/url.js b/app/common/helpers/url.js index 2dcd363..a697397 100644 --- a/app/common/helpers/url.js +++ b/app/common/helpers/url.js @@ -6,7 +6,7 @@ export const createUrl = (endpoint, options) => { url.search = qs.stringify({ ...qs.parse(url.search), - ...options, + options, }); return Url.format(url); };