@rango-dev/widget-embedded 0.40.0 → 0.40.1
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/CHANGELOG.md +42 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/dist/widget-embedded.build.json +1 -1
- package/package.json +2 -2
- package/src/containers/Inputs/Inputs.tsx +1 -1
package/package.json
CHANGED
|
@@ -117,7 +117,7 @@ export function Inputs(props: PropTypes) {
|
|
|
117
117
|
|
|
118
118
|
// if a token hasn't any value, we will reset the input by setting an empty string.
|
|
119
119
|
const nextInputAmount = !!fromTokenBalance?.amount
|
|
120
|
-
? tokenBalanceReal
|
|
120
|
+
? tokenBalanceReal.split(',').join('')
|
|
121
121
|
: '';
|
|
122
122
|
|
|
123
123
|
setInputAmount(nextInputAmount);
|