Skip to content

Commit

Permalink
Linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
acrosman committed Oct 7, 2023
1 parent 3df1cfc commit adcd1c9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/ipcCalls.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ const handlers = {
request: args,
});
return true;
}
},
);
},
// Logout of a specific Salesforce org.
sf_logout: (event, args) => {
const conn = new jsforce.Connection(sfConnections[args.org]);
conn.logout().then(
(result) => {
() => {
// now the session has been expired.
windows.main.webContents.send('response_logout', {
status: true,
Expand All @@ -134,7 +134,8 @@ const handlers = {
`Logout Failed ${err}`,
);
return true;
});
},
);
},
send_log: (event, args) => {
logMessage(
Expand Down

0 comments on commit adcd1c9

Please sign in to comment.