Skip to content

Commit eed24cd

Browse files
committed
wip
1 parent ead8713 commit eed24cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/ComposableArchitecture/SharedState/PersistenceKey/FileStorageKey.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public final class FileStorageKey<Value: Codable & Sendable>: PersistenceKey, @u
9090
) { [weak self] _ in
9191
guard let self
9292
else { return }
93-
performImmediately()
93+
self.performImmediately()
9494
}
9595
} else {
9696
willResign = nil
@@ -104,7 +104,7 @@ public final class FileStorageKey<Value: Codable & Sendable>: PersistenceKey, @u
104104
) { [weak self] _ in
105105
guard let self
106106
else { return }
107-
performImmediately()
107+
self.performImmediately()
108108
}
109109
} else {
110110
willTerminate = nil

0 commit comments

Comments
 (0)