Minor fixes.

This commit is contained in:
Patrick Fic
2020-11-19 10:38:06 -08:00
parent 6ecdcefe92
commit 457b1d9f42
6 changed files with 12 additions and 13 deletions

View File

@@ -57,9 +57,9 @@ const applicationReducer = (state = INITIAL_STATE, action) => {
selectedJobTargetPc: action.payload,
};
case ApplicationActionTypes.SET_SELECTED_JOB_ID:
ipcRenderer.send(ipcTypes.default.app.toMain.track, {
event: "SET_SELECTED_JOB",
});
// ipcRenderer.send(ipcTypes.default.app.toMain.track, {
// event: "SET_SELECTED_JOB",
// });
return { ...state, selectedJobId: action.payload };
case ApplicationActionTypes.SET_SETTINGS:
return { ...state, settings: { ...state.settings, ...action.payload } };