Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
fix: do not needlessly send the project
Browse files Browse the repository at this point in the history
  • Loading branch information
marionebl committed Sep 10, 2018
1 parent d472c0e commit 27d3bae
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/container/element-list/element-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,7 @@ export class ElementList extends React.Component {
if (element) {
store.requestContextMenu({
menu: Types.ContextMenuType.ElementMenu,
data: {
element: element.toJSON(),
project: store.getProject().toJSON()
}
data: { element: element.toJSON() }
});
}
}
Expand Down

0 comments on commit 27d3bae

Please sign in to comment.