Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pierremtb committed Feb 11, 2025
1 parent bf46e4a commit b10ee69
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ const createWindow = (pathToOpen?: string, reuse?: boolean): BrowserWindow => {
}

// Deep Link: Case of a cold start from Windows or Linux
const zooProtocolArg = process.argv.find(a => a.startsWith(ZOO_STUDIO_PROTOCOL + '://'))
const zooProtocolArg = process.argv.find((a) =>
a.startsWith(ZOO_STUDIO_PROTOCOL + '://')
)
if (!pathToOpen && zooProtocolArg) {
pathToOpen = zooProtocolArg
console.log('Retrieved deep link from argv', pathToOpen)
Expand Down

0 comments on commit b10ee69

Please sign in to comment.