diff --git a/extensions/default/src/Components/MoreDropdownMenu.tsx b/extensions/default/src/Components/MoreDropdownMenu.tsx index a0d1117d2..66cd5f85f 100644 --- a/extensions/default/src/Components/MoreDropdownMenu.tsx +++ b/extensions/default/src/Components/MoreDropdownMenu.tsx @@ -33,10 +33,10 @@ const getMenuItemsDefault = ({ id: string; label: string; iconName: string; - onClick: ({ ...props }: withAppTypes) => () => void; + onClick: ({ commandsManager, ...props }: withAppTypes) => () => void; }; }) => ( - item.onClick({ ...props })}> + item.onClick({ commandsManager, ...props })}>
{item.iconName && } {item.label}