Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ui): Remove MMDL Card Choices in Mako #877

Merged
merged 2 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions react-app/src/components/BreadCrumb/create-breadcrumbs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ const newSubmissionPageRouteMapper: Record<
displayText:
"Medicaid Eligibility, Enrollment, Administration, and Health Homes",
},
"medicaid-abp": {
to: "/new-submission/spa/medicaid/landing/medicaid-abp",
displayText:
"Medicaid Alternative Benefits Plans (ABP), and Medicaid Premiums and Cost Sharing",
},
chip: {
to: "/new-submission/spa/chip",
displayText: "CHIP SPA Type",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,41 +76,6 @@ const ExternalAppLandingPage = ({
);
};

export const MedicaidABPLandingPage = () => (
<ExternalAppLandingPage
pageTitle={
"Medicaid Alternative Benefits Plans (ABP), and Medicaid Premiums and Cost Sharing"
}
image={<MMDLLogo />}
description={
<LandingPageDescription>
<p className="mb-4">
<b>
Medicaid Alternative Benefits Plans (ABP), and Medicaid Premiums and
Cost Sharing are managed within the{" "}
<a
className="text-sky-700 hover:text-sky-800 underline"
href={EXTERNAL_APP.MMDL}
target="_blank"
rel="noreferrer"
>
Medicaid Model Data Lab (MMDL)
</a>
.
</b>
</p>
<p>
The MMDL system allows states to apply for changes to their State
plan, and access report on Medicaid program
administration/implementation.
</p>
</LandingPageDescription>
}
buttonLabel={"Enter the MMDL system"}
buttonLink={EXTERNAL_APP.MMDL}
/>
);

export const MedicaidEligibilityLandingPage = () => (
<ExternalAppLandingPage
pageTitle={
Expand Down
6 changes: 0 additions & 6 deletions react-app/src/features/selection-flow/options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@ export const MEDICAID_SPA_OPTIONS: OptionData[] = [
description: "Redirects to the MACPro Appian submission system",
to: "/new-submission/spa/medicaid/landing/medicaid-eligibility",
},
{
title:
"Medicaid Alternative Benefits Plans (ABP), and Medicaid Premiums and Cost Sharing",
description: "Redirects to the MMDL submission system",
to: "/new-submission/spa/medicaid/landing/medicaid-abp",
},
{
title: "All Other Medicaid SPA Submissions",
description: "Create a new Medicaid State Plan Amendment",
Expand Down
4 changes: 0 additions & 4 deletions react-app/src/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,6 @@ export const router = createBrowserRouter([
path: "/new-submission/spa/chip",
element: <F.ChipSPASubmissionOptions />,
},
{
path: "/new-submission/spa/medicaid/landing/medicaid-abp",
element: <F.MedicaidABPLandingPage />,
},
{
path: "/new-submission/spa/medicaid/landing/medicaid-eligibility",
element: <F.MedicaidEligibilityLandingPage />,
Expand Down
Loading