We have a sendable warning due to Bindable becoming magically @MainActor since it holds onto an @ObservedObject. This is causing a problem with the Identifiable conformance, but we're not sure what use that conformance is so we are going to remove until we find a good reason for it.
BTW the @MainActor inference that is giving us trouble here is going away in Swift 6.
We have a sendable warning due to
Bindable
becoming magically@MainActor
since it holds onto an@ObservedObject
. This is causing a problem with theIdentifiable
conformance, but we're not sure what use that conformance is so we are going to remove until we find a good reason for it.BTW the
@MainActor
inference that is giving us trouble here is going away in Swift 6.