From e624c204ff166b804d17a3e5180b82e9260abb33 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sat, 18 Apr 2026 15:53:08 +0300 Subject: [PATCH] client/fluid container: fix a bug --- apps/client/src/widgets/react/FluidWrapper.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/react/FluidWrapper.tsx b/apps/client/src/widgets/react/FluidWrapper.tsx index f11389c471..09f47ff55e 100644 --- a/apps/client/src/widgets/react/FluidWrapper.tsx +++ b/apps/client/src/widgets/react/FluidWrapper.tsx @@ -35,7 +35,9 @@ export function FluidWrapper({className, breakpoints, children}: FluidWrapperPar return () => observer.disconnect(); }, [sortedBreakpoints]); - return
- {children} + return
+
+ {children} +
} \ No newline at end of file