From 9a9a8ba67d246b41a939e5ccac1728306f0b79e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Louck=C3=BD?= Date: Mon, 28 Dec 2020 01:23:49 +0100 Subject: [PATCH] Fix missing apostrophe in Withdrawal view --- .../bisq/desktop/main/funds/withdrawal/WithdrawalView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/src/main/java/bisq/desktop/main/funds/withdrawal/WithdrawalView.java b/desktop/src/main/java/bisq/desktop/main/funds/withdrawal/WithdrawalView.java index 26adadf8e3..e67cd9903e 100644 --- a/desktop/src/main/java/bisq/desktop/main/funds/withdrawal/WithdrawalView.java +++ b/desktop/src/main/java/bisq/desktop/main/funds/withdrawal/WithdrawalView.java @@ -269,8 +269,8 @@ public class WithdrawalView extends ActivatableView { feeToggleGroupListener = (observable, oldValue, newValue) -> { feeExcluded = newValue == feeExcludedRadioButton; amountLabel.setText(feeExcluded ? - Res.get("funds.withdrawal.receiverAmount", Res.getBaseCurrencyCode()) : - Res.get("funds.withdrawal.senderAmount", Res.getBaseCurrencyCode())); + Res.get("funds.withdrawal.receiverAmount") : + Res.get("funds.withdrawal.senderAmount")); }; }