Add newline in low balance notification with target

Stephen Paul Weber created

Change summary

lib/low_balance.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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