From 80c5f23da274adb9270a024e7f0e84e09b8f575e Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 29 Oct 2024 14:32:10 +0200 Subject: Fix double padding in `Dialog.InnerFlatList` on web (#5986) * remove extra padding on web * pass prop --- src/components/Dialog/index.web.tsx | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'src/components/Dialog/index.web.tsx') diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx index 43cb95b03..41a39ffda 100644 --- a/src/components/Dialog/index.web.tsx +++ b/src/components/Dialog/index.web.tsx @@ -210,21 +210,26 @@ export const ScrollableInner = Inner export const InnerFlatList = React.forwardRef< FlatList, - FlatListProps & {label: string} & {webInnerStyle?: StyleProp} ->(function InnerFlatList({label, style, webInnerStyle, ...props}, ref) { + FlatListProps & {label: string} & { + webInnerStyle?: StyleProp + webInnerContentContainerStyle?: StyleProp + } +>(function InnerFlatList( + {label, style, webInnerStyle, webInnerContentContainerStyle, ...props}, + ref, +) { const {gtMobile} = useBreakpoints() return ( + ]} + contentContainerStyle={[a.px_0, webInnerContentContainerStyle]}>