Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/Atoms/Atom/PublisherAtom.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@preconcurrency import Combine
import Combine

/// An atom type that provides a sequence of values of the given `Publisher` as an ``AsyncPhase`` value.
///
Expand Down
2 changes: 1 addition & 1 deletion Sources/Atoms/Context/AtomTestContext.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@preconcurrency import Combine
import Combine

/// A context structure to read, watch, and otherwise interact with atoms in testing.
///
Expand Down
1 change: 1 addition & 0 deletions Sources/Atoms/Core/Atom/Atom.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public extension Atom {
EmptyEffect()
}

@MainActor
func updated(newValue: Produced, oldValue: Produced, context: CurrentContext) {}
}

Expand Down