Skip to content

Commit

Permalink
fix: Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
felixrieseberg committed Jul 28, 2020
1 parent 9e3e962 commit ddcbbab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/ipc.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function registerIpcHandlers() {
});

ipcMain.handle("getUserDataPath", () => {
return app.getPath('userData');
return app.getPath("userData");
});
}

Expand Down
2 changes: 1 addition & 1 deletion src/renderer/ipc.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ module.exports = {

getUserDataPath() {
return ipcRenderer.invoke("getUserDataPath");
}
},
};
2 changes: 1 addition & 1 deletion src/renderer/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async function registerWorker() {
SCREEN_WIDTH: SCREEN_WIDTH,
SCREEN_HEIGHT: SCREEN_HEIGHT,
userDataPath: await getUserDataPath(),
isDevMode: await getIsDevMode()
isDevMode: await getIsDevMode(),
};

worker = window.emulatorWorker = new Worker(
Expand Down

0 comments on commit ddcbbab

Please sign in to comment.