Skip to content

Commit

Permalink
corrected links to firefly wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
adam_unchained committed Oct 5, 2023
1 parent 52be770 commit d860800
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,12 @@ export class WalletDeeplinkComponent {
}

// We want to round to maximum 6 digits.
const walletType = this.network === Network.RMS ? 'firefly-beta' : 'firefly';
const walletType =
!this.network || this.network === Network.IOTA
? 'iota'
: this.network === Network.RMS
? 'firefly-beta'
: 'firefly';
if (this.tokenId && this.tokenAmount) {
return this.sanitizer.bypassSecurityTrustUrl(
walletType +
Expand Down

0 comments on commit d860800

Please sign in to comment.