diff options
Diffstat (limited to 'src/components/Dialog/index.web.tsx')
-rw-r--r-- | src/components/Dialog/index.web.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx index a086955db..4cb4e7570 100644 --- a/src/components/Dialog/index.web.tsx +++ b/src/components/Dialog/index.web.tsx @@ -197,11 +197,10 @@ export function Inner({ export const ScrollableInner = Inner -export function InnerFlatList({ - label, - style, - ...props -}: FlatListProps<any> & {label: string}) { +export const InnerFlatList = React.forwardRef< + FlatList, + FlatListProps<any> & {label: string} +>(function InnerFlatList({label, style, ...props}, ref) { const {gtMobile} = useBreakpoints() return ( <Inner @@ -213,12 +212,13 @@ export function InnerFlatList({ overflow: 'hidden', }}> <FlatList + ref={ref} style={[gtMobile ? a.px_2xl : a.px_xl, flatten(style)]} {...props} /> </Inner> ) -} +}) export function Handle() { return null |