File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Sources/FluidStack/Transition Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public struct AnyRemovingTransition {
1212
1313 public init (
1414 name: String = " \( #file) , \( #line) " ,
15- startTransition: @escaping @MainActor ( RemovingTransitionContext ) -> Void
15+ startTransition: sending @escaping @MainActor ( RemovingTransitionContext ) -> Void
1616 ) {
1717 self . name = name
1818 self . _startTransition = startTransition
@@ -53,7 +53,7 @@ extension AnyRemovingTransition {
5353 */
5454 public static func `dynamic`(
5555 name: String = " dynamic \( #file) , \( #line) " ,
56- transition: sending @escaping ( ) -> Self
56+ transition: sending @escaping @ MainActor ( ) -> Self
5757 ) -> Self {
5858 return . init( name: name) { context in
5959 let _transition = transition ( )
You can’t perform that action at this time.
0 commit comments