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.
This commit is contained in:
@@ -114,7 +114,6 @@ const EnhancedKanbanTaskCard: React.FC<EnhancedKanbanTaskCardProps> = React.memo
|
|||||||
|
|
||||||
|
|
||||||
const handleSubTaskExpand = useCallback(() => {
|
const handleSubTaskExpand = useCallback(() => {
|
||||||
console.log('handleSubTaskExpand', task, projectId);
|
|
||||||
if (task && task.id && projectId) {
|
if (task && task.id && projectId) {
|
||||||
if (task.show_sub_tasks) {
|
if (task.show_sub_tasks) {
|
||||||
// If subtasks are already loaded, just toggle visibility
|
// If subtasks are already loaded, just toggle visibility
|
||||||
|
|||||||
Reference in New Issue
Block a user