about summary refs log tree commit diff
path: root/src/components/Dialog/types.ts
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-10-09 14:50:54 -0700
committerGitHub <noreply@github.com>2024-10-09 14:50:54 -0700
commit9f070cd9cdc5387e664180c5b771d07595acc261 (patch)
treee722afccc2cb7d952c7a1c7a48735924e7e10b3e /src/components/Dialog/types.ts
parent86b0d3b49819fbd81385ebc64ec86d8807c6a189 (diff)
downloadvoidsky-9f070cd9cdc5387e664180c5b771d07595acc261.tar.zst
Cleanup unused props from dialogs (#5665)
Diffstat (limited to 'src/components/Dialog/types.ts')
-rw-r--r--src/components/Dialog/types.ts2
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