diff --git a/playbook/app/pb_kits/playbook/pb_currency/currency.rb b/playbook/app/pb_kits/playbook/pb_currency/currency.rb index 7387c76151..796a1abd07 100644 --- a/playbook/app/pb_kits/playbook/pb_currency/currency.rb +++ b/playbook/app/pb_kits/playbook/pb_currency/currency.rb @@ -103,7 +103,7 @@ def whole_value if comma_separator number_with_delimiter(value.gsub(",", "")) else - value # Keep original formatting if comma_separator is false + value end end @@ -153,7 +153,7 @@ def formatted_amount if comma_separator number_with_delimiter(amount.gsub(",", "")) else - amount # Keep original formatting if comma_separator is false + amount end else whole_value