Skip to content

Commit ea5d2a2

Browse files
committed
Address suggestions
1 parent 17b5120 commit ea5d2a2

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

Modules/Sources/Support/Extensions/Foundation.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,6 @@ extension Task where Failure == Error {
9494
}
9595
}
9696

97-
enum RunForAtLeastResult<T>: Sendable where T: Sendable {
98-
case result(T)
99-
case wait
100-
}
101-
10297
static func runForAtLeast<C>(
10398
_ duration: C.Instant.Duration,
10499
operation: @escaping @Sendable () async throws -> Success,

Modules/Sources/Support/UI/Support Conversations/AttachmentListView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ struct AttachmentThumbnailView: View {
112112
} label: {
113113
ZStack {
114114
if attachment.isImage {
115-
AsyncImage(url: attachment.url) { image in
115+
CachedAsyncImage(url: attachment.url) { image in
116116
image
117117
.resizable()
118118
.aspectRatio(contentMode: .fill)

0 commit comments

Comments
 (0)