diff options
author | Hailey <me@haileyok.com> | 2024-10-09 14:50:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-09 14:50:54 -0700 |
commit | 9f070cd9cdc5387e664180c5b771d07595acc261 (patch) | |
tree | e722afccc2cb7d952c7a1c7a48735924e7e10b3e /src/components/Dialog/types.ts | |
parent | 86b0d3b49819fbd81385ebc64ec86d8807c6a189 (diff) | |
download | voidsky-9f070cd9cdc5387e664180c5b771d07595acc261.tar.zst |
Cleanup unused props from dialogs (#5665)
Diffstat (limited to 'src/components/Dialog/types.ts')
-rw-r--r-- | src/components/Dialog/types.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/Dialog/types.ts b/src/components/Dialog/types.ts index caa787535..b1388a817 100644 --- a/src/components/Dialog/types.ts +++ b/src/components/Dialog/types.ts @@ -6,7 +6,6 @@ import type { } from 'react-native' import {ViewStyleProp} from '#/alf' -import {PortalComponent} from '#/components/Portal' import {BottomSheetViewProps} from '../../../modules/bottom-sheet' import {BottomSheetSnapPoint} from '../../../modules/bottom-sheet/src/BottomSheet.types' @@ -61,7 +60,6 @@ export type DialogOuterProps = { nativeOptions?: Omit<BottomSheetViewProps, 'children'> webOptions?: {} testID?: string - Portal?: PortalComponent } type DialogInnerPropsBase<T> = React.PropsWithChildren<ViewStyleProp> & T |