From e28178e286af7a80443520c12c267a3e76e5fc12 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 20:12:29 +0000 Subject: [PATCH] Remove unused isPartiallyDeducted variable Co-authored-by: Kenearos <86194771+Kenearos@users.noreply.github.com> --- webapp/app.js | 1 - 1 file changed, 1 deletion(-) diff --git a/webapp/app.js b/webapp/app.js index caed7a0..837c2cc 100644 --- a/webapp/app.js +++ b/webapp/app.js @@ -829,7 +829,6 @@ class DienstplanApp { } const isFullyDeducted = thresholdReached && duty.isQual && deductedAmount >= duty.share - 0.0001; - const isPartiallyDeducted = thresholdReached && duty.isQual && deductedAmount > 0 && paidAmount > 0; // Calculate euro amount only for paid portion const rate = duty.isQual ? this.calculator.RATE_WEEKEND : this.calculator.RATE_NORMAL;