Skip to content

Commit

Permalink
fix: Prefix has space next to its value
Browse files Browse the repository at this point in the history
  • Loading branch information
saschb2b committed Sep 2, 2024
1 parent 082f75a commit c9f029f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/CurrencyTextField/CurrencyTextField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export const CurrencyTextField: React.FC<CurrencyTextFieldProps> = ({
decimalSeparator={decimalCharacter}
thousandSeparator={digitGroupSeparator}
valueIsNumericString
prefix={currencySymbol}
prefix={`${currencySymbol} `}
customInput={TextField}
min={minimumValue}
max={maximumValue}
Expand Down

0 comments on commit c9f029f

Please sign in to comment.