From ad029248fb792986386db863cfcac0512d5bf0ed Mon Sep 17 00:00:00 2001 From: Saurabh Kumar Bajpai Date: Wed, 20 May 2026 00:14:48 +0530 Subject: [PATCH] fix: Repair task group rendering. --- js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index 9bfd993..2582f54 100644 --- a/js/app.js +++ b/js/app.js @@ -562,7 +562,7 @@ function renderTasks() { : ''; tasksSection.innerHTML = actionBar + - renderGroup(titlePrefix + '⚠ Due soon', dueSoon, 'var(--color-text-danger)', true) + renderGroup(titlePrefix + '⚠ Due soon', dueSoon, 'var(--color-text-danger)', true) + renderGroup(titlePrefix + 'This week', thisWeek, 'var(--color-text-secondary)', true) + renderGroup(titlePrefix + 'Completed', completed, 'var(--color-text-tertiary)') + emptyState;