From 6ee35ca03e867c48c1e6eb83872a1f08ee62d01f Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 16 Jul 2024 12:10:40 +0200 Subject: [PATCH] remove log --- libs/remix-ui/grid-view/src/lib/remix-ui-grid-section.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/libs/remix-ui/grid-view/src/lib/remix-ui-grid-section.tsx b/libs/remix-ui/grid-view/src/lib/remix-ui-grid-section.tsx index 07e4eea279..1e93101525 100644 --- a/libs/remix-ui/grid-view/src/lib/remix-ui-grid-section.tsx +++ b/libs/remix-ui/grid-view/src/lib/remix-ui-grid-section.tsx @@ -29,14 +29,11 @@ const hasChildCell = (children: ReactNode): boolean => { } const traverse = (child: ReactNode) => { - console.log('found ', children) - if (found) return if (isElement(child)) { if (child.props.classList === 'EECellStyle') { found = true - console.log('found ', child.props.className) return }