From 658ff0eeeccb86d22132744c65b52e3a66e8da1d Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 18 Apr 2025 17:30:32 +0300 Subject: [PATCH] place header on top of scrollview --- src/components/Dialog/index.tsx | 37 +++++++++++++++++---------------- 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index de8287a53c..aab6a4313a 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -252,25 +252,26 @@ export const ScrollableInner = React.forwardRef( } return ( - + <> {header} - {children} - + + {children} + + ) }, )