@overmap-ai/core 1.0.51-issue-types.4 → 1.0.51-issue-types.5

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.
@@ -15089,7 +15089,7 @@ const FormBrowser = memo(
15089
15089
  }, [filter, maxResults, ownerFilter]);
15090
15090
  const userForms = useAppSelector(selectFilteredForms(ownerFilterOptions)) ?? [];
15091
15091
  const userFormMapping = useAppSelector(selectFormMapping);
15092
- const attachableUserForms = userForms.filter((form) => !form.component_type);
15092
+ const attachableUserForms = userForms.filter((form) => !form.component_type && !form.issue_type);
15093
15093
  const attachableUserFormMapping = Object.values(userFormMapping).filter(
15094
15094
  (form) => !form.component_type
15095
15095
  );