From 26f7017af650a3ff56bef5f9613699a569fcc9db Mon Sep 17 00:00:00 2001 From: lianahus Date: Tue, 16 Jul 2024 12:49:09 +0200 Subject: [PATCH] hide text for nofilter results --- libs/remix-ui/grid-view/src/lib/remix-ui-grid-section.tsx | 1 + 1 file changed, 1 insertion(+) 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 93d98950e2..07e4eea279 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 @@ -21,6 +21,7 @@ interface RemixUIGridSectionProps { } const hasChildCell = (children: ReactNode): boolean => { + return true let found = false const isElement = (child: ReactNode): child is React.ReactElement => {