diff --git a/Examples/DemoApp/Features/LocationTracking/LocationService.swift b/Examples/DemoApp/Features/LocationTracking/LocationService.swift index f38608e..e718eff 100644 --- a/Examples/DemoApp/Features/LocationTracking/LocationService.swift +++ b/Examples/DemoApp/Features/LocationTracking/LocationService.swift @@ -8,7 +8,7 @@ final class LocationService: NSObject { private let manager = CLLocationManager() private var continuation: AsyncStream>.Continuation? - nonisolated override init() { + override nonisolated init() { super.init() Task { @MainActor in self.manager.delegate = self