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

Commit

Permalink
fix: correctly pass page to create-menu
Browse files Browse the repository at this point in the history
  • Loading branch information
marionebl committed May 24, 2018
1 parent 64168b4 commit bb563ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/electron/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,12 @@ Mobx.autorun(() => {
Mobx.autorun(() => {
const project = store.getProject();
const patternLibrary = store.getPatternLibrary();
const page = store.getCurrentPage();

createMenu({
project,
page,
patternLibrary,
project,
store
});
});
Expand Down

0 comments on commit bb563ef

Please sign in to comment.