@contentful/field-editor-reference 4.3.5 → 4.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2356,7 +2356,9 @@ function useEditorPermissions(props) {
2356
2356
  if (entityType === 'Entry') {
2357
2357
  // Hardcoded `true` value following https://contentful.atlassian.net/browse/DANTE-486
2358
2358
  // TODO: refine permissions check in order to account for tags in rules
2359
- _canRead = readableContentTypes.length > 0 || true;
2359
+ // TODO: always show every content type (it's just a filter) to avoid people not seeing
2360
+ // their (partly limited) content types
2361
+ _canRead = true;
2360
2362
  setCanLinkEntity(_canRead);
2361
2363
  }
2362
2364