From e9a748f6910853a1ea9715b122977af64eeff2e0 Mon Sep 17 00:00:00 2001 From: Brandon Brown Date: Mon, 30 Mar 2026 15:09:13 -0700 Subject: [PATCH] Remove 'You usually finish' nudge from Today view The completion average subtitle felt chiding rather than helpful. Just showing the task count is clean and sufficient. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/app/(app)/today/page.tsx | 9 --------- 1 file changed, 9 deletions(-) diff --git a/frontend/src/app/(app)/today/page.tsx b/frontend/src/app/(app)/today/page.tsx index 5d561de..f0e7dd4 100644 --- a/frontend/src/app/(app)/today/page.tsx +++ b/frontend/src/app/(app)/today/page.tsx @@ -221,15 +221,6 @@ export default function TodayPage() { {nudge.today_count === 1 ? "task" : "tasks"} today - {Math.round(nudge.average_completed) > 0 ? ( -

- You usually finish ~{Math.round(nudge.average_completed)} -

- ) : ( -

- Let's see what you can do. -

- )} )}