Skip to content

Commit

Permalink
hide text for 2024 core sets
Browse files Browse the repository at this point in the history
  • Loading branch information
karla-vm committed Feb 13, 2024
1 parent b4299eb commit 05d5dfd
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions services/ui-src/src/views/StateHome/AddCoreSetCards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export const AddCoreSetCards = ({
healthHomesCoreSetExists,
renderHealthHomeCoreSet = true,
}: Props) => {
const { year } = useParams();
return (
<>
<AddCoreSetCard
Expand All @@ -81,11 +82,13 @@ export const AddCoreSetCards = ({
coreSetExists={healthHomesCoreSetExists}
/>
)}
<CUI.Center w="44" textAlign="center">
<CUI.Text fontStyle="italic" fontSize="sm">
Only one group of Adult Core Set Measures can be submitted per FFY
</CUI.Text>
</CUI.Center>
{year !== "2024" && (
<CUI.Center w="44" textAlign="center">
<CUI.Text fontStyle="italic" fontSize="sm">
Only one group of Adult Core Set Measures can be submitted per FFY
</CUI.Text>
</CUI.Center>
)}
</>
);
};

0 comments on commit 05d5dfd

Please sign in to comment.