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 17b5120 commit ea5d2a2Copy full SHA for ea5d2a2
Modules/Sources/Support/Extensions/Foundation.swift
@@ -94,11 +94,6 @@ extension Task where Failure == Error {
94
}
95
96
97
- enum RunForAtLeastResult<T>: Sendable where T: Sendable {
98
- case result(T)
99
- case wait
100
- }
101
-
102
static func runForAtLeast<C>(
103
_ duration: C.Instant.Duration,
104
operation: @escaping @Sendable () async throws -> Success,
Modules/Sources/Support/UI/Support Conversations/AttachmentListView.swift
@@ -112,7 +112,7 @@ struct AttachmentThumbnailView: View {
112
} label: {
113
ZStack {
114
if attachment.isImage {
115
- AsyncImage(url: attachment.url) { image in
+ CachedAsyncImage(url: attachment.url) { image in
116
image
117
.resizable()
118
.aspectRatio(contentMode: .fill)
0 commit comments