Skip to content

Commit

Permalink
Fixed concurrency warning (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
KazaiMazai authored Sep 18, 2024
1 parent c7b3a30 commit 614d59b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Puredux/Store/Core/AnyStoreObject.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ extension AnyStoreObject {
}

private extension AnyStoreObject {
final class Box<StoreObject: StoreObjectProtocol>: BaseBox
final class Box<StoreObject: StoreObjectProtocol>: BaseBox, @unchecked Sendable
where
StoreObject.State == State,
StoreObject.Action == Action {
Expand Down

0 comments on commit 614d59b

Please sign in to comment.