Replies: 2 comments 1 reply
-
It definitely should, along with There's an open PR here to address the problem, but isn't passing CI yet: https://github.com/pointfreeco/swiftui-navigation/pull/116 Hopefully soon! |
Beta Was this translation helpful? Give feedback.
1 reply
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
ConfirmationDialogState
is meant to model state, and if that state is at all accessed from a Sendable context with-strict-concurrency=complete
, this will produce a compiler warning thatConfirmationDialogState
is not safe to send across contexts like this.This is a somewhat of a meta-discussion about goals for this project, and the family of pointfreeco packages. Should TCA support writing SwiftUI applications with
-strict-concurrency=complete
checks enabled without warnings? In our application,ConfirmationDialogState
is one of the last pieces that prevents that from happening, so we use@preconcurrency import SwiftUINavigationCore
.Beta Was this translation helpful? Give feedback.
All reactions