Skip to content

Commit

Permalink
fix: use correct dataShareable
Browse files Browse the repository at this point in the history
  • Loading branch information
Birkbjo committed Mar 4, 2024
1 parent 84abf1a commit 4da8375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/sectionList/bulk/BulkSharing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const BulkSharing = ({
onSaved,
}: BulkSharingProps) => {
const schema = useSchemaFromHandle()
const dataShareable = !schema?.dataShareable
const dataShareable = schema?.dataShareable
const mutation = useBulkSharingMutation({ modelNamePlural: schema.plural })

const [sharingActions, setSharingActions] = useState<SharingAction[]>([])
Expand Down

0 comments on commit 4da8375

Please sign in to comment.