We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb0bc77 commit 738a819Copy full SHA for 738a819
Firestore/Swift/Source/PropertyWrapper/FirestoreQuery.swift
@@ -143,12 +143,12 @@ public struct FirestoreQuery<T>: DynamicProperty {
143
/// The results of the query.
144
///
145
/// This property returns an empty collection when there are no matching results.
146
- public var wrappedValue: T {
+ @MainActor @preconcurrency public var wrappedValue: T {
147
firestoreQueryObservable.items
148
}
149
150
/// A binding to the request's mutable configuration properties
151
- public var projectedValue: Configuration {
+ @MainActor @preconcurrency public var projectedValue: Configuration {
152
get {
153
firestoreQueryObservable.configuration
154
0 commit comments