Skip to content

Commit f066583

Browse files
committed
fix: 무분별한 Sendable 삭제 복구
1 parent 5d12c50 commit f066583

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Application/DevLogPersistence/Sources/Persistence/WebPageImageStoreImpl.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ final class WebPageImageStoreImpl: WebPageImageStore {
5151
}
5252

5353
private extension WebPageImageStoreImpl {
54-
func perform<T>(_ operation: @escaping () throws -> T) async throws -> T {
54+
func perform<T: Sendable>(_ operation: @escaping @Sendable () throws -> T) async throws -> T {
5555
try await withCheckedThrowingContinuation { continuation in
5656
queue.async {
5757
do {

0 commit comments

Comments
 (0)