diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index 5d926f59f4..f0e7b7e82b 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -1,7 +1,6 @@ import React, {useImperativeHandle} from 'react' import {View, Dimensions, Keyboard, Pressable} from 'react-native' import BottomSheet, { - BottomSheetFlatList, BottomSheetBackdropProps, BottomSheetScrollView, BottomSheetTextInput, @@ -29,7 +28,6 @@ export {useDialogControl, useDialogContext} from '#/components/Dialog/context' export * from '#/components/Dialog/types' // @ts-ignore export const Input = createInput(BottomSheetTextInput) -export const FlatList = BottomSheetFlatList function Backdrop(props: BottomSheetBackdropProps) { const t = useTheme() diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx index bbb5f3b711..038f6295ae 100644 --- a/src/components/Dialog/index.web.tsx +++ b/src/components/Dialog/index.web.tsx @@ -17,7 +17,6 @@ import {useDialogStateControlContext} from '#/state/dialogs' export {useDialogControl, useDialogContext} from '#/components/Dialog/context' export * from '#/components/Dialog/types' export {Input} from '#/components/forms/TextField' -export {FlatList} from 'react-native' const stopPropagation = (e: any) => e.stopPropagation() diff --git a/src/view/shell/index.tsx b/src/view/shell/index.tsx index 702ddf1542..f29183095a 100644 --- a/src/view/shell/index.tsx +++ b/src/view/shell/index.tsx @@ -101,7 +101,6 @@ function ShellInner() { - diff --git a/src/view/shell/index.web.tsx b/src/view/shell/index.web.tsx index 9aeb1c860f..2f760df48a 100644 --- a/src/view/shell/index.web.tsx +++ b/src/view/shell/index.web.tsx @@ -42,7 +42,6 @@ function ShellInner() { -