Skip to content

Commit

Permalink
Merge pull request #137 from algorandfoundation/fix/disable-qr-mainnet
Browse files Browse the repository at this point in the history
fix: Disable QR signing for Mainnet
  • Loading branch information
tasosbit authored Jan 23, 2025
2 parents dca2ed2 + ce782cb commit 10e007d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/modals/transaction/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func (m ViewModel) FormatedAddress() string {
}

func (m ViewModel) IsQREnabled() bool {
return m.State.Status.Network == "testnet-v1.0" || m.State.Status.Network == "mainnet-v1.0"
return m.State.Status.Network == "testnet-v1.0" // || m.State.Status.Network == "mainnet-v1.0"
}

// New creates and instance of the ViewModel with a default controls.Model
Expand Down

0 comments on commit 10e007d

Please sign in to comment.