Skip to content

Commit

Permalink
chore: uncomment dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
antonreshetov committed May 7, 2022
1 parent d06f7d6 commit 9c72e3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/electron-builder.ts
Expand Up @@ -15,8 +15,8 @@ export default {
},
mac: {
target: [
{ target: 'dmg', arch: 'arm64' }
// { target: 'dmg', arch: 'x64' }
{ target: 'dmg', arch: 'arm64' },
{ target: 'dmg', arch: 'x64' }
],
icon: 'config/icons/icon.icns'
},
Expand Down
2 changes: 1 addition & 1 deletion src/main/services/analytics/index.ts
Expand Up @@ -21,5 +21,5 @@ export const track = (event: TrackEvents, payload?: string) => {
? `${version}/${os}/${event}/${payload}`
: `${version}/${os}/${event}`

// analytics.pageview(path).send()
analytics.pageview(path).send()
}

0 comments on commit 9c72e3d

Please sign in to comment.