Skip to content

Commit 43810cf

Browse files
jvsena42Copilot
andauthored
chore: lint
Co-authored-by: Copilot <[email protected]>
1 parent 542a74e commit 43810cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Bitkit/Views/Wallets/Activity/ActivityExplorerView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ struct ActivityExplorerView: View {
137137
.textCase(.uppercase)
138138
.padding(.bottom, 8)
139139
VStack(alignment: .leading, spacing: 4) {
140-
ForEach(Array(txDetails.vout.enumerated()), id: \.offset) { _, output in
141-
BodySSBText(output.scriptpubkey_address ?? "")
140+
ForEach(txDetails.vout.indices, id: \.self) { i in
141+
BodySSBText(txDetails.vout[i].scriptpubkey_address ?? "")
142142
.lineLimit(1)
143143
.truncationMode(.middle)
144144
}

0 commit comments

Comments
 (0)