diff options
Diffstat (limited to 'src/components/Dialog/index.tsx')
-rw-r--r-- | src/components/Dialog/index.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index 8b43a85e4..c860c4dcf 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -267,7 +267,10 @@ export const ScrollableInner = React.forwardRef<ScrollView, DialogInnerProps>( export const InnerFlatList = React.forwardRef< ListMethods, - ListProps<any> & {webInnerStyle?: StyleProp<ViewStyle>} + ListProps<any> & { + webInnerStyle?: StyleProp<ViewStyle> + webInnerContentContainerStyle?: StyleProp<ViewStyle> + } >(function InnerFlatList({style, ...props}, ref) { const insets = useSafeAreaInsets() const {nativeSnapPoint, disableDrag, setDisableDrag} = useDialogContext() |