Skip to content

Commit

Permalink
fix: wrong appId (#7537)
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 authored Oct 4, 2023
1 parent 77b67d3 commit c173d68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/desktop/product.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ function getAppProtocol() {
}

/**
* If stage = 'prod' -> 'org.iota.iota'
* If stage = 'alpha' -> 'org.iota.iota.alpha'
* If stage = 'prod' -> 'org.iota.firefly'
* If stage = 'alpha' -> 'org.iota.firefly.alpha'
*/
function getAppId() {
const defaultAppId = 'org.iota.iota'
const defaultAppId = 'org.iota.firefly'
if (STAGE === 'prod') {
return defaultAppId
}
Expand Down

0 comments on commit c173d68

Please sign in to comment.