diff --git a/lib/shared/addon/catalog/service.js b/lib/shared/addon/catalog/service.js index 2bd43c508..750dac36f 100644 --- a/lib/shared/addon/catalog/service.js +++ b/lib/shared/addon/catalog/service.js @@ -7,8 +7,6 @@ import { allSettled, hash } from 'rsvp'; import { union } from '@ember/object/computed'; import C from 'shared/utils/constants'; -const RANCHER_VERSION = 'rancherVersion'; - export default Service.extend({ globalStore: service(), settings: service(), @@ -204,14 +202,7 @@ export default Service.extend({ }, _addLimits(url, qp) { - let version = get(this, 'settings.rancherVersion'); - qp = qp || {}; - - if (version) { - qp[RANCHER_VERSION] = version; - } - url = addQueryParams(url, qp); return url;