We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 46e1fbd + 9d90c28 commit a881a65Copy full SHA for a881a65
packages/react-sdk-components/src/components/field/Currency/Currency.tsx
@@ -74,11 +74,12 @@ export default function Currency(props) {
74
return <FieldValueList name={hideLabel ? '' : label} value={formattedValue} variant='stacked' />;
75
}
76
77
+ // eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars
78
function currOnChange(event, inValue) {
79
// console.log(`Currency currOnChange inValue: ${inValue}`);
80
81
// update internal value
- setCurrValue(inValue);
82
+ setCurrValue(event?.target?.value);
83
84
85
function currOnBlur(event, inValue) {
0 commit comments