Skip to content

Commit

Permalink
fix: use correct boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
g-saracca committed Nov 19, 2024
1 parent 5bf0175 commit ae3f612
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export const EditCreateCollectionForm = ({
const useFacetsFromParentDefault = CollectionFormHelper.defineShouldCheckUseFromParent(
onEditMode,
isEditingRootCollection,
mode === 'edit' ? collection.isMetadataBlockRoot : undefined
mode === 'edit' ? collection.isFacetRoot : undefined
)

const formDefaultValues: CollectionFormData = {
Expand Down

0 comments on commit ae3f612

Please sign in to comment.