diff --git a/client/src/app/pages/applications/components/application-detail-drawer/reviewed-archetype-item.tsx b/client/src/app/pages/applications/components/application-detail-drawer/reviewed-archetype-item.tsx index 84f5a07fdb..912d8588dc 100644 --- a/client/src/app/pages/applications/components/application-detail-drawer/reviewed-archetype-item.tsx +++ b/client/src/app/pages/applications/components/application-detail-drawer/reviewed-archetype-item.tsx @@ -5,12 +5,11 @@ import React from "react"; export const ReviewedArchetypeItem = ({ id }: { id: number }) => { const { archetype } = useFetchArchetypeById(id); - if (!archetype) return null; + if (!archetype?.review) return null; return ( ); };