From dee385c6dbcce183a82628fb32c5b478f83c9e04 Mon Sep 17 00:00:00 2001 From: shancds Date: Mon, 30 Jun 2025 13:42:35 +0530 Subject: [PATCH] refactor(enhanced-kanban): remove console log from handleSubTaskExpand function - Removed debugging console log from the handleSubTaskExpand function to clean up the code and improve performance. --- .../src/components/enhanced-kanban/EnhancedKanbanTaskCard.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/worklenz-frontend/src/components/enhanced-kanban/EnhancedKanbanTaskCard.tsx b/worklenz-frontend/src/components/enhanced-kanban/EnhancedKanbanTaskCard.tsx index d2959707..37b9b535 100644 --- a/worklenz-frontend/src/components/enhanced-kanban/EnhancedKanbanTaskCard.tsx +++ b/worklenz-frontend/src/components/enhanced-kanban/EnhancedKanbanTaskCard.tsx @@ -114,7 +114,6 @@ const EnhancedKanbanTaskCard: React.FC = React.memo const handleSubTaskExpand = useCallback(() => { - console.log('handleSubTaskExpand', task, projectId); if (task && task.id && projectId) { if (task.show_sub_tasks) { // If subtasks are already loaded, just toggle visibility