Revert deduction value to 2.0 across all files as per user feedback

Co-authored-by: Kenearos <86194771+Kenearos@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-12-12 12:26:34 +00:00
parent 6ecfd895e1
commit db6e95f45c
13 changed files with 56 additions and 56 deletions

View file

@ -8,7 +8,7 @@ class BonusCalculator {
this.RATE_NORMAL = 250; // Normal day rate (not weekend/holiday)
this.RATE_WEEKEND = 450; // Weekend/holiday rate
this.MIN_QUALIFYING_DAYS = 2.0; // Minimum qualifying days to trigger bonus
this.DEDUCTION_AMOUNT = 1.0; // Deduction after reaching threshold
this.DEDUCTION_AMOUNT = 2.0; // Deduction after reaching threshold
}
/**