Skip to content

Commit c9f029f

Browse files
committed
fix: Prefix has space next to its value
1 parent 082f75a commit c9f029f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/components/CurrencyTextField/CurrencyTextField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export const CurrencyTextField: React.FC<CurrencyTextFieldProps> = ({
195195
decimalSeparator={decimalCharacter}
196196
thousandSeparator={digitGroupSeparator}
197197
valueIsNumericString
198-
prefix={currencySymbol}
198+
prefix={`${currencySymbol} `}
199199
customInput={TextField}
200200
min={minimumValue}
201201
max={maximumValue}

0 commit comments

Comments
 (0)