From 2714a83dcc2c5bd71478977f70dbfc3b0242f992 Mon Sep 17 00:00:00 2001 From: rnascimento10 Date: Mon, 24 Aug 2026 21:44:20 -0300 Subject: [PATCH] fix: handle possibly undefined progressMax in KanbanView --- packages/client/src/components/Kanban/KanbanView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/components/Kanban/KanbanView.tsx b/packages/client/src/components/Kanban/KanbanView.tsx index f512300..a2c4970 100644 --- a/packages/client/src/components/Kanban/KanbanView.tsx +++ b/packages/client/src/components/Kanban/KanbanView.tsx @@ -279,7 +279,7 @@ export default function KanbanView({ const progressMax = acCount ? acCount.total : hasTasks - ? it.tasks?.length + ? (it.tasks?.length ?? 0) : 0; const progressVal = acCount ? acCount.done