From 195ef5b2ca4dfecbbba8b8f416e81323a53f49ca Mon Sep 17 00:00:00 2001 From: Christopher Mayor Date: Sat, 7 Mar 2026 13:39:02 -0800 Subject: [PATCH] [taskboard] fit task columns to workspace width --- components/tasks-client.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/components/tasks-client.tsx b/components/tasks-client.tsx index f9ea9e8..b1151c0 100644 --- a/components/tasks-client.tsx +++ b/components/tasks-client.tsx @@ -89,12 +89,11 @@ export function TasksClient({ {tasks.length} total tasks -
-
+
{COLUMNS.map((column) => { const columnTasks = tasks.filter((task) => task.status === column); return ( - + {column} @@ -165,7 +164,6 @@ export function TasksClient({ ); })} -