back-testing-react 2.0.10 → 2.0.12

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": "back-testing-react",
3
- "version": "2.0.10",
3
+ "version": "2.0.12",
4
4
  "type": "module",
5
5
  "description": "Parametric back testing application developed by NormanMax Insurance Solutions",
6
6
  "main": "dist/index.js",
@@ -163,7 +163,7 @@ const InputProxyStep = forwardRef<WizardStep, InputProxyStepProps>((props,ref) =
163
163
  clonedProxy.latitude = location.latitude;
164
164
  clonedProxy.longitude = location.longitude;
165
165
  }
166
- updateProxy(clonedProxy);
166
+ //updateProxy(clonedProxy);
167
167
  }
168
168
 
169
169
  function addNewProxy(){
@@ -176,7 +176,7 @@ const InputProxyStep = forwardRef<WizardStep, InputProxyStepProps>((props,ref) =
176
176
  proxyList.push(wizardProxies[i])
177
177
  }
178
178
  proxyList.push(newProxy);
179
- //setWizardProxies(proxyList);
179
+ setWizardProxies(proxyList);
180
180
  //setSelectedProxy(newProxy);
181
181
  //setExpanded('panel'+(newProxy.refId));
182
182
  }