lib/low_balance.rb 🔗
@@ -52,7 +52,7 @@ class LowBalance
return unless @transaction_amount&.positive?
return unless @transaction_amount > @customer.balance
- "You need an additional " \
+ "\nYou need an additional " \
"$#{'%.2f' % (@transaction_amount - @customer.balance)} "\
"to complete this transaction."
end