Skip to content

Commit

Permalink
MOB-2193 - Fixed issue when user couldn't transfer base domains (#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg-Pecheneg authored Oct 7, 2024
1 parent 9b6cfa0 commit c522f04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ extension DomainDisplayInfo {
}
var isInteractable: Bool { usageType == .normal }
var isAbleToSetAsRR: Bool { usageType == .normal && blockchain == .Matic }
var isAbleToTransfer: Bool { usageType == .normal && blockchain == .Matic }
var isAbleToTransfer: Bool { usageType == .normal && (blockchain == .Matic || blockchain == .Base) }
var isAvailableForMessaging: Bool {
switch usageType {
case .normal:
Expand Down

0 comments on commit c522f04

Please sign in to comment.