Added Days Message

This commit is contained in:
Maddox Werts 2025-08-01 17:18:51 -04:00
parent 39647abec7
commit 1f85666377

View file

@ -97,12 +97,12 @@ impl App {
// Returning the Result // Returning the Result
if calculation.reversed { if calculation.reversed {
SharedString::from(format!( SharedString::from(format!(
"Retract the billing date to {} (-{}).", "Retract the billing date to {} (-{} Days).",
calculation.new_date, calculation.days_pushed calculation.new_date, calculation.days_pushed
)) ))
} else { } else {
SharedString::from(format!( SharedString::from(format!(
"Extend the billing date to {} (+{}).", "Extend the billing date to {} (+{} Days).",
calculation.new_date, calculation.days_pushed calculation.new_date, calculation.days_pushed
)) ))
} }