From e6d397a77b74ef26e364967746810535cf0b516c Mon Sep 17 00:00:00 2001 From: m Date: Thu, 2 Apr 2026 10:52:14 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20billableaua=20=E2=80=94=20>=3D=208h=20th?= =?UTF-8?q?reshold=20for=20lifestyle=20verdict?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sites/billableaua.de/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/billableaua.de/index.html b/sites/billableaua.de/index.html index 67cff1c..a7c2041 100644 --- a/sites/billableaua.de/index.html +++ b/sites/billableaua.de/index.html @@ -430,7 +430,7 @@ const perDayStr = perDay.toFixed(1).replace('.', ','); let verdict = ''; - if (perDay > 8) { + if (perDay >= 8) { verdict = 'Das ist kein Job. Das ist ein Lifestyle.'; } else if (perDay > 7) { verdict = 'Das ist die Theorie. In der Praxis bist du länger da.';