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/Portal.tsx | |
parent | 86b0d3b49819fbd81385ebc64ec86d8807c6a189 (diff) | |
download | voidsky-9f070cd9cdc5387e664180c5b771d07595acc261.tar.zst |
Cleanup unused props from dialogs (#5665)
Diffstat (limited to 'src/components/Portal.tsx')
-rw-r--r-- | src/components/Portal.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/Portal.tsx b/src/components/Portal.tsx index 7441df005..03b397b2b 100644 --- a/src/components/Portal.tsx +++ b/src/components/Portal.tsx @@ -12,8 +12,6 @@ type ComponentMap = { [id: string]: Component } -export type PortalComponent = ({children}: {children?: React.ReactNode}) => null - export function createPortalGroup() { const Context = React.createContext<ContextType>({ outlet: null, |