Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
muukii committed Nov 21, 2024
1 parent 9754858 commit 982b9fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/CollectionView/SelectionState.swift
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ extension SelectionState {

public static func multiple<Identifier: Hashable>(
selected: Set<Identifier>,
canMoreSelect: Bool,
canSelectMore: Bool,
onChange: @escaping (_ selected: Identifier, _ selection: SelectAction) -> Void
) -> Self where Self == SelectionStateContainers.Multiple<Identifier> {
.init(
selected: selected,
canMoreSelect: canMoreSelect,
canMoreSelect: canSelectMore,
onChange: onChange
)
}
Expand Down

0 comments on commit 982b9fa

Please sign in to comment.