This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: selected open collections not appearing on search results

+1 -6
+1 -6
src/webapp/features/collections/components/collectionSelectorOpenCollections/CollectionSelectorOpenCollections.tsx
··· 117 117 /> 118 118 ) : ( 119 119 <CollectionSelectorItemList 120 - collections={allCollections.filter( 121 - (c) => 122 - !props.selectedCollections.some( 123 - (sel) => sel.id === c.id, 124 - ), 125 - )} 120 + collections={allCollections} 126 121 selectedCollections={props.selectedCollections} 127 122 onChange={handleCollectionChange} 128 123 />