diff --git a/client/src/app/pages/archetypes/archetypes-page.tsx b/client/src/app/pages/archetypes/archetypes-page.tsx index 60fad8847d..8f4fb094f0 100644 --- a/client/src/app/pages/archetypes/archetypes-page.tsx +++ b/client/src/app/pages/archetypes/archetypes-page.tsx @@ -295,6 +295,9 @@ const Archetypes: React.FC = () => { title: t("actions.assess"), onClick: () => assessSelectedArchetype(archetype), + isDisabled: + !archetype.applications || + archetype.applications.length === 0, }, { title: t("actions.review"), @@ -304,6 +307,9 @@ const Archetypes: React.FC = () => { archetypeId: archetype.id, }) ), + isDisabled: + !archetype.applications || + archetype.applications.length === 0, }, { title: t("actions.edit"),