File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
BDKSwiftExampleWallet/View/Activity Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ struct TransactionItemView: View {
8383 )
8484 )
8585 . lineLimit ( dynamicTypeSize. isAccessibilitySize ? 2 : 1 )
86+ . redacted ( reason: isRedacted ? . placeholder : [ ] )
8687 case . unconfirmed( let timestamp) :
8788 if let timestamp {
8889 Text (
@@ -92,14 +93,15 @@ struct TransactionItemView: View {
9293 )
9394 )
9495 . lineLimit ( dynamicTypeSize. isAccessibilitySize ? 2 : 1 )
96+ . redacted ( reason: isRedacted ? . placeholder : [ ] )
9597 } else {
9698 Text ( " Pending " )
9799 . lineLimit ( dynamicTypeSize. isAccessibilitySize ? 2 : 1 )
100+ . redacted ( reason: isRedacted ? . placeholder : [ ] )
98101 }
99102 }
100103
101104 }
102- . redacted ( reason: isRedacted ? . placeholder : [ ] )
103105 . foregroundStyle ( . secondary)
104106 . font ( . callout)
105107
You can’t perform that action at this time.
0 commit comments