From b624841c8ee94466903d67771d66ae166c94377e Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Tue, 27 Jun 2023 15:58:38 -0500 Subject: [PATCH] Add newline in low balance notification with target --- lib/low_balance.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/low_balance.rb b/lib/low_balance.rb index dd116ea04022b8e8b16f80d20115db15afb0e268..dbd445437a642666b6fbf267bd12df7fee5cec1c 100644 --- a/lib/low_balance.rb +++ b/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