@woosmap/ui 4.162.4 → 4.162.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "4.162.4",
3
+ "version": "4.162.5",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -2,7 +2,6 @@ import React, { Component } from 'react';
2
2
  import PropTypes from 'prop-types';
3
3
  import PricingSlider from './PricingSlider';
4
4
  import PricingData from './PricingData';
5
- import pricingData from './PricingData';
6
5
 
7
6
  class PricingSimulator extends Component {
8
7
  constructor(props) {
@@ -98,7 +97,7 @@ class PricingSimulator extends Component {
98
97
  key={`pricing_${pricingKey.replace(' ', '')}`}
99
98
  publicMode={publicMode}
100
99
  currency={currency}
101
- values={sliders[category + pricingKey]}
100
+ values={sliders[category][pricingKey]}
102
101
  onChange={this.onChange(category, pricingKey)}
103
102
  />
104
103
  );