We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 771737a commit 3c6bfd9Copy full SHA for 3c6bfd9
Bitkit/Views/Wallets/Receive/ReceiveQr.swift
@@ -96,10 +96,10 @@ struct ReceiveQr: View {
96
.foregroundColor(.purpleAccent),
97
isDisabled: wallet.nodeLifecycleState != .running
98
) {
99
- if GeoService.shared.isGeoBlocked && !wallet.hasUsableChannels {
100
- navigationPath.append(.cjitGeoBlocked)
101
- } else {
+ if !wallet.hasUsableChannels && !GeoService.shared.isGeoBlocked {
102
navigationPath.append(.cjitAmount)
+ } else if GeoService.shared.isGeoBlocked {
+ navigationPath.append(.cjitGeoBlocked)
103
}
104
105
} else {
0 commit comments