@rango-dev/ui 0.1.14-next.2 → 0.1.14-next.3

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/dist/ui.esm.js CHANGED
@@ -4106,7 +4106,7 @@ function Settings(props) {
4106
4106
  });
4107
4107
  }), React__default.createElement(TextField, {
4108
4108
  type: "number",
4109
- value: customSlippage,
4109
+ value: customSlippage || '',
4110
4110
  onChange: function onChange(event) {
4111
4111
  var parsedValue = parseFloat(event.target.value);
4112
4112
  if (!parsedValue || parsedValue >= minSlippage && parsedValue <= maxSlippage) onCustomSlippageChange(parsedValue);