Skip to content

Commit 3d404ea

Browse files
Merge pull request #661 from nofrixion/MOOV-4804-requester-vop
Removed space in between amount and currency
2 parents 005373f + ec7011e commit 3d404ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NoFrixion.MoneyMoov/Extensions/PaymentAmount.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static class PaymentAmount
2323
/// Combines the display currency symbol and amount.
2424
/// </summary>
2525
public static string DisplayCurrencyAndAmount(CurrencyTypeEnum currency, decimal amount) =>
26-
currency.GetCurrencySymbol() + " " + GetDisplayAmount(currency, amount);
26+
currency.GetCurrencySymbol() + GetDisplayAmount(currency, amount);
2727

2828
// Decide decimals once, reuse everywhere.
2929
private static int GetDecimalPlaces(CurrencyTypeEnum currency, decimal amount)

0 commit comments

Comments
 (0)