summaryrefslogtreecommitdiff
path: root/components/contextmenu.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/contextmenu.tsx')
-rw-r--r--components/contextmenu.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/components/contextmenu.tsx b/components/contextmenu.tsx
index bff4861..118b8bb 100644
--- a/components/contextmenu.tsx
+++ b/components/contextmenu.tsx
@@ -50,13 +50,12 @@ export default interface ContextMenuProps {
background: Boolean
target: OrgRoamNode | null
nodeType?: string
- coordinates: { [direction: string]: number }
+ coordinates: { [direction: string]: number | undefined }
handleLocal: (node: OrgRoamNode, add: string) => void
menuClose: () => void
scope: { nodeIds: string[] }
webSocket: any
setPreviewNode: any
- contextMenuRef: any
}
export const ContextMenu = (props: ContextMenuProps) => {
@@ -70,7 +69,6 @@ export const ContextMenu = (props: ContextMenuProps) => {
scope,
webSocket,
setPreviewNode,
- contextMenuRef,
} = props
const { isOpen, onOpen, onClose } = useDisclosure()
const copyRef = useRef<any>()