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 b9d59e9 commit 20fb312Copy full SHA for 20fb312
BDKSwiftExampleWallet/View/Home/ActivityHomeHeaderView.swift
@@ -134,10 +134,14 @@ struct ActivityHomeHeaderView: View {
134
private func syncImageIndicator() -> some View {
135
switch walletSyncState {
136
case .synced:
137
- AnyView(
138
- Image(systemName: "checkmark.circle.fill")
139
- .foregroundStyle(.green)
140
- )
+ if !isKyotoClient {
+ AnyView(
+ Image(systemName: "checkmark.circle.fill")
+ .foregroundStyle(.green)
141
+ )
142
+ } else {
143
+ AnyView(EmptyView())
144
+ }
145
146
case .syncing:
147
if isKyotoClient && progress > 0 {
0 commit comments