Describe the bug
When using UIScrollViewDelegateProxy and UICollectionViewDelegateProxy, one is ignored
code
let collectionView = UICollectionView(frame: .zero, collectionViewLayout: layout)
self.collectionView.didSelectItemPublisher.sink { _ in
print("not called")
}
.store(in: &self.cancellableSet)
self.collectionView.didEndDraggingPublisher.sink { _ in
print("called")
}
.store(in: &self.cancellableSet)