This repository has no description
0

Configure Feed

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

fix: access type not passed on mutation

+2 -1
+2 -1
src/webapp/features/collections/components/createCollectionDrawer/CreateCollectionDrawer.tsx
··· 22 22 onClose: () => void; 23 23 initialName?: string; 24 24 onCreate?: ( 25 - newCollection: Pick<Collection, 'id' | 'name' | 'cardCount'>, 25 + newCollection: Pick<Collection, 'id' | 'name' | 'cardCount' | 'accessType'>, 26 26 ) => void; 27 27 } 28 28 ··· 55 55 id: newCollection.collectionId, 56 56 name: form.getValues().name, 57 57 cardCount: 0, 58 + accessType: form.getValues().accessType, 58 59 }); 59 60 } 60 61 },