diff --git a/app/client/src/widgets/wds/WDSCurrencyInputWidget/component/index.tsx b/app/client/src/widgets/wds/WDSCurrencyInputWidget/component/index.tsx index 16103345754..e544ac2a55a 100644 --- a/app/client/src/widgets/wds/WDSCurrencyInputWidget/component/index.tsx +++ b/app/client/src/widgets/wds/WDSCurrencyInputWidget/component/index.tsx @@ -8,6 +8,10 @@ export function CurrencyInputComponent(props: CurrencyInputComponentProps) { (option) => option.currency === props.currencyCode, ); + const prefix = ( + {currency?.symbol_native} + ); + return ( {currency?.symbol_native}} + prefix={prefix} validationState={props.validationStatus} value={props.value} />