Make SyncDatabase and Secrets both compatible with Swift strict concurrency checking.

This commit is contained in:
Brent Simmons
2024-02-27 22:32:55 -08:00
parent 93ae6ee2bb
commit dc6ebf7226
3 changed files with 19 additions and 12 deletions

View File

@@ -10,7 +10,7 @@ import Foundation
public struct CredentialsManager {
private static var keychainGroup: String? = {
private static let keychainGroup: String? = {
guard let appGroup = Bundle.main.object(forInfoDictionaryKey: "AppGroup") as? String else {
return nil
}