From b3f52d179b117f49f05ec8fc67c81bd89f37155b Mon Sep 17 00:00:00 2001 From: Thomas Walker Date: Fri, 10 Jan 2025 15:29:43 -0500 Subject: [PATCH 1/4] feat(test) Unit test for updating pacakges (#1007) * feat(test) Unit test for updating pacakges * code comments addressed --- lib/lambda/search.test.ts | 2 +- lib/lambda/update/updatePackage.test.ts | 288 ++++++++++++++++++++++++ lib/lambda/update/updatePackage.ts | 41 ++-- mocks/data/items.ts | 19 +- 4 files changed, 323 insertions(+), 27 deletions(-) create mode 100644 lib/lambda/update/updatePackage.test.ts diff --git a/lib/lambda/search.test.ts b/lib/lambda/search.test.ts index 124064852..4b49522ca 100644 --- a/lib/lambda/search.test.ts +++ b/lib/lambda/search.test.ts @@ -29,7 +29,7 @@ describe("getSearchData Handler", () => { const body = JSON.parse(res.body); expect(body).toBeTruthy(); expect(body?.hits?.hits).toBeTruthy(); - expect(body?.hits?.hits?.length).toEqual(13); + expect(body?.hits?.hits?.length).toEqual(14); }); it("should handle errors during processing", async () => { diff --git a/lib/lambda/update/updatePackage.test.ts b/lib/lambda/update/updatePackage.test.ts new file mode 100644 index 000000000..89e4514a6 --- /dev/null +++ b/lib/lambda/update/updatePackage.test.ts @@ -0,0 +1,288 @@ +import { describe, it, expect, vi, beforeEach } from "vitest"; +import { handler } from "./updatePackage"; +import { APIGatewayEvent } from "node_modules/shared-types"; + +import { + EXISTING_ITEM_ID, + EXISTING_ITEM_PENDING_ID, + CAPITATED_INITIAL_ITEM_ID, + CAPITATED_INITIAL_NEW_ITEM_ID, + WEIRD_ID, +} from "mocks"; +vi.mock("libs/handler-lib", () => ({ + response: vi.fn((data) => data), +})); + +describe("handler", () => { + beforeEach(() => { + vi.clearAllMocks(); + process.env.topicName = "test-topic"; + }); + + it("should return 400 if event body is missing", async () => { + const event = {} as APIGatewayEvent; + const result = await handler(event); + const expectedResult = { statusCode: 400, body: { message: "Event body required" } }; + + expect(result).toStrictEqual(expectedResult); + }); + + it("should return 400 if package ID is not found", async () => { + const noActionevent = { + body: JSON.stringify({ packageId: "123", changeReason: "Nunya" }), + } as APIGatewayEvent; + + const resultPackage = await handler(noActionevent); + + expect(resultPackage.statusCode).toBe(400); + }); + it("should return 400 if action is not found", async () => { + const noApackageEvent = { + body: JSON.stringify({ action: "123", changeReason: "Nunya" }), + } as APIGatewayEvent; + + const resultAction = await handler(noApackageEvent); + + expect(resultAction.statusCode).toBe(400); + }); + it("should get a package", async () => { + const noActionevent = { + body: JSON.stringify({ packageId: "123", action: "delete", changeReason: "Nunya" }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + + const expectedResult = { + statusCode: 404, + body: { message: "No record found for the given id" }, + }; + expect(result).toStrictEqual(expectedResult); + }); + it("should delete a package", async () => { + const noActionevent = { + body: JSON.stringify({ + packageId: EXISTING_ITEM_ID, + action: "delete", + changeReason: "Nunya", + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + + const expectedResult = { + statusCode: 200, + body: { message: "MD-00-0000 has been deleted." }, + }; + expect(result).toStrictEqual(expectedResult); + }); + it("should delete a package but no topic name", async () => { + process.env.topicName = ""; + const noActionevent = { + body: JSON.stringify({ + packageId: EXISTING_ITEM_ID, + action: "delete", + changeReason: "Nunya", + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + + const expectedResult = { + statusCode: 500, + body: { message: "Topic name is not defined" }, + }; + expect(result).toStrictEqual(expectedResult); + }); + + it("should fail to update an ID on a package - missing new iD", async () => { + const noActionevent = { + body: JSON.stringify({ + packageId: EXISTING_ITEM_ID, + action: "update-id", + changeReason: "Nunya", + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + + const expectedResult = { + statusCode: 400, + body: { message: "New ID required to update package" }, + }; + expect(result).toStrictEqual(expectedResult); + }); + it("should fail to update an ID on a package - missing or same ID", async () => { + const noActionevent = { + body: JSON.stringify({ + packageId: EXISTING_ITEM_ID, + action: "update-id", + changeReason: "Nunya", + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + + const expectedResult = { + statusCode: 400, + body: { message: "New ID required to update package" }, + }; + expect(result).toStrictEqual(expectedResult); + }); + it("should fail to update an ID on a package - missing or same ID", async () => { + const noActionevent = { + body: JSON.stringify({ + packageId: EXISTING_ITEM_ID, + action: "update-id", + changeReason: "Nunya", + updatedId: EXISTING_ITEM_PENDING_ID, + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + + const expectedResult = { + statusCode: 400, + body: { message: "This ID already exists" }, + }; + expect(result).toStrictEqual(expectedResult); + }); + it("should update an ID on a package", async () => { + const noActionevent = { + body: JSON.stringify({ + packageId: CAPITATED_INITIAL_ITEM_ID, + action: "update-id", + changeReason: "Nunya", + updatedId: CAPITATED_INITIAL_NEW_ITEM_ID, + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + + const expectedResult = { + statusCode: 200, + body: { + message: `The ID of package ${CAPITATED_INITIAL_ITEM_ID} has been updated to ${CAPITATED_INITIAL_NEW_ITEM_ID}.`, + }, + }; + expect(result).toStrictEqual(expectedResult); + }); + it("should fail to update a package ID with no topic name", async () => { + process.env.topicName = ""; + const noActionevent = { + body: JSON.stringify({ + packageId: CAPITATED_INITIAL_ITEM_ID, + action: "update-id", + changeReason: "Nunya", + updatedId: "SS-1235.R00.00", + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + const expectedResult = { + statusCode: 500, + body: { message: "Topic name is not defined" }, + }; + expect(result).toStrictEqual(expectedResult); + }); + + it("should fail to update a package ID with bad new id format", async () => { + const noActionevent = { + body: JSON.stringify({ + packageId: CAPITATED_INITIAL_ITEM_ID, + action: "update-id", + changeReason: "Nunya", + updatedId: "SS-120", + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + const expectedResult = + "The Initial Waiver Number must be in the format of SS-####.R00.00 or SS-#####.R00.00"; + + expect(JSON.parse(result?.body)[0].message).toStrictEqual(expectedResult); + }); + it("should fail to update a package with bad existing id format", async () => { + const noActionevent = { + body: JSON.stringify({ + packageId: WEIRD_ID, + action: "update-id", + changeReason: "Nunya", + updatedId: "SS-120", + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + const expectedResult = "Cannot read properties of undefined (reading 'baseSchema')"; + expect(result?.statusCode).toStrictEqual(500); + expect(result?.body.message).toStrictEqual(expectedResult); + }); + it("should fail to update a package - no topic name ", async () => { + process.env.topicName = ""; + const noActionevent = { + body: JSON.stringify({ + packageId: WEIRD_ID, + action: "update-values", + changeReason: "Nunya", + updatedFields: {}, + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + const expectedResult = { + statusCode: 500, + body: { message: "Topic name is not defined" }, + }; + expect(result).toStrictEqual(expectedResult); + }); + it("should fail to update a package - No valid fields ", async () => { + const noActionevent = { + body: JSON.stringify({ + packageId: WEIRD_ID, + action: "update-values", + changeReason: "Nunya", + updatedFields: { badfield: "nothing" }, + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + const expectedResult = { + statusCode: 400, + body: { message: "Cannot update invalid field(s): badfield" }, + }; + expect(result).toStrictEqual(expectedResult); + }); + it("should fail to update a package - Id can not be updated ", async () => { + const noActionevent = { + body: JSON.stringify({ + packageId: WEIRD_ID, + action: "update-values", + changeReason: "Nunya", + updatedFields: { id: "cant update ID here" }, + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + const expectedResult = { + statusCode: 400, + body: { message: "ID is not a valid field to update" }, + }; + expect(result).toStrictEqual(expectedResult); + }); + it("should fail to update a package - nothing to update ", async () => { + const noActionevent = { + body: JSON.stringify({ + packageId: CAPITATED_INITIAL_ITEM_ID, + action: "update-values", + changeReason: "Nunya", + updatedFields: { state: "TX" }, + }), + } as APIGatewayEvent; + + const result = await handler(noActionevent); + const expectedResult = { + statusCode: 200, + body: { message: `state has been updated in package ${CAPITATED_INITIAL_ITEM_ID}.` }, + }; + expect(result).toStrictEqual(expectedResult); + }); +}); diff --git a/lib/lambda/update/updatePackage.ts b/lib/lambda/update/updatePackage.ts index dd9c4109f..62eba97ad 100644 --- a/lib/lambda/update/updatePackage.ts +++ b/lib/lambda/update/updatePackage.ts @@ -102,7 +102,7 @@ const sendUpdateIdMessage = async ({ ...remainingFields } = currentPackage._source; - if (!updatedId) { + if (updatedId === currentPackage._id) { return response({ statusCode: 400, body: { message: "New ID required to update package" }, @@ -111,7 +111,7 @@ const sendUpdateIdMessage = async ({ // check if a package with this new ID already exists const packageExists = await getPackage(updatedId); - if (packageExists) { + if (packageExists?.found) { return response({ statusCode: 400, body: { message: "This ID already exists" }, @@ -121,13 +121,6 @@ const sendUpdateIdMessage = async ({ const packageEvent = await getPackageType(currentPackage._id); const packageSubmissionTypeSchema = events[packageEvent as keyof typeof events].baseSchema; - if (!packageSubmissionTypeSchema) { - return response({ - statusCode: 500, - body: { message: "Could not validate the ID of this type of package." }, - }); - } - const idSchema = packageSubmissionTypeSchema.shape.id; const parsedId = idSchema.safeParse(updatedId); @@ -178,7 +171,21 @@ export const handler = async (event: APIGatewayEvent) => { const parseEventBody = (body: unknown) => { return updatePackageEventBodySchema.parse(typeof body === "string" ? JSON.parse(body) : body); }; - + let body = { + packageId: "", + action: "", + }; + if (typeof event.body === "string") { + body = JSON.parse(event.body); + } else { + body = event.body; + } + if (!body.packageId || !body.action) { + return response({ + statusCode: 400, + body: { message: "Package ID and action are required" }, + }); + } const { packageId, action, @@ -187,16 +194,8 @@ export const handler = async (event: APIGatewayEvent) => { changeReason, } = parseEventBody(event.body); - if (!packageId || !action) { - return response({ - statusCode: 400, - body: { message: "Package ID and action are required" }, - }); - } - const currentPackage = await getPackage(packageId); - - if (!currentPackage) { + if (!currentPackage || currentPackage.found == false) { return response({ statusCode: 404, body: { message: "No record found for the given id" }, @@ -218,10 +217,6 @@ export const handler = async (event: APIGatewayEvent) => { changeReason, }); } - return response({ - statusCode: 400, - body: { message: "Could not update package." }, - }); } catch (err) { console.error("Error has occured modifying package:", err); return response({ diff --git a/mocks/data/items.ts b/mocks/data/items.ts index e07e4e30f..07e6d9bb1 100644 --- a/mocks/data/items.ts +++ b/mocks/data/items.ts @@ -14,8 +14,10 @@ export const NOT_EXISTING_ITEM_ID = "MD-11-0000"; export const TEST_ITEM_ID = "MD-0005.R01.00"; export const EXISTING_ITEM_TEMPORARY_EXTENSION_ID = "MD-0005.R01.TE00"; export const HI_TEST_ITEM_ID = "HI-0000.R00.00"; -export const CAPITATED_INITIAL_ITEM_ID = "MD-006.R00.00"; -export const CAPITATED_AMEND_ITEM_ID = "MD-006.R00.01"; +export const CAPITATED_INITIAL_ITEM_ID = "SS-2234.R00.00"; +export const CAPITATED_INITIAL_NEW_ITEM_ID = "SS-1235.R00.00"; +export const CAPITATED_AMEND_ITEM_ID = "VA-2234.R11.01"; +export const WEIRD_ID = "VA"; export const CONTRACTING_INITIAL_ITEM_ID = "MD-007.R00.00"; export const CONTRACTING_AMEND_ITEM_ID = "MD-007.R00.01"; export const MISSING_CHANGELOG_ITEM_ID = "MD-008.R00.00"; @@ -35,7 +37,7 @@ const items: Record = { actionType: "New", }, }, - ["VA"]: { + [WEIRD_ID]: { _id: EXISTING_ITEM_ID, found: true, _source: { @@ -115,6 +117,17 @@ const items: Record = { state: "MD", }, }, + [CAPITATED_AMEND_ITEM_ID]: { + _id: CAPITATED_AMEND_ITEM_ID, + found: true, + _source: { + id: CAPITATED_AMEND_ITEM_ID, + seatoolStatus: SEATOOL_STATUS.PENDING, + actionType: "New", + origin: "SEATool", + state: "MD", + }, + }, [NOT_FOUND_ITEM_ID]: { _id: NOT_FOUND_ITEM_ID, found: false, From 8de5c5f3742c9a48f05fa9a635d1721f9fa752b5 Mon Sep 17 00:00:00 2001 From: James Dinh Date: Mon, 13 Jan 2025 08:40:23 -0800 Subject: [PATCH 2/4] fix(email-verbiage): Add additional QA feedback from email templates (#1003) * add fixes * fix date helper and spacing on additional info * add additional QA feedback --- lib/libs/email/content/email-components.tsx | 29 +- .../emailTemplates/ChipSpaCMS.tsx | 6 +- .../emailTemplates/ChipSpaState.tsx | 3 +- .../emailTemplates/MedSpaCMS.tsx | 4 +- .../emailTemplates/MedSpaState.tsx | 8 +- .../emailTemplates/Waiver1915bCMS.tsx | 4 +- .../emailTemplates/Waiver1915bState.tsx | 11 +- .../emailTemplates/ChipSpaCMS.tsx | 2 - .../emailTemplates/TempExtCMS.tsx | 2 - .../InitialSubmissionCMS.test.tsx.snap | 7533 ++++++++++++---- .../InitialSubmissionState.test.tsx.snap | 7927 +++-------------- .../__snapshots__/ResToRaiCMS.test.tsx.snap | 956 +- .../__snapshots__/ResToRaiState.test.tsx.snap | 84 +- .../__snapshots__/UpSubDocCMS.test.tsx.snap | 2343 ++++- .../__snapshots__/UpSubDocState.test.tsx.snap | 2375 ++++- .../WithdrawPackageCMS.test.tsx.snap | 28 +- .../WithdrawPackageState.test.tsx.snap | 28 +- .../__snapshots__/WithdrwRaiCMS.test.tsx.snap | 478 +- .../WithdrawRaiState.test.tsx.snap | 208 +- lib/packages/shared-utils/date-helper.ts | 5 +- 20 files changed, 12367 insertions(+), 9667 deletions(-) diff --git a/lib/libs/email/content/email-components.tsx b/lib/libs/email/content/email-components.tsx index 12712ad7d..59f1746b1 100644 --- a/lib/libs/email/content/email-components.tsx +++ b/lib/libs/email/content/email-components.tsx @@ -147,7 +147,7 @@ const Attachments = ({ {Object.entries(attachments).map(([key, group]) => { if (!group?.files?.length) return null; - return ( + return group.files.map((file, index) => ( - {group.files.map((file, index) => ( - - {group.label}:{" "} - {index < (group.files?.length ?? 0) - 1 &&
} -
- ))} + {" "} + + {group.label}:{" "} +
- {group.files.map((file, index) => ( - - {file.filename} - {index < (group.files?.length ?? 0) - 1 &&
} -
- ))} + {file.filename}
- ); + )); })} ); @@ -192,7 +185,13 @@ const PackageDetails = ({ details }: { details: Record }) => Summary: - {value ?? "No additional information submitted"} + + {value ?? "No additional information submitted"} + ); } diff --git a/lib/libs/email/content/new-submission/emailTemplates/ChipSpaCMS.tsx b/lib/libs/email/content/new-submission/emailTemplates/ChipSpaCMS.tsx index 0713a4b0b..d6ec0a379 100644 --- a/lib/libs/email/content/new-submission/emailTemplates/ChipSpaCMS.tsx +++ b/lib/libs/email/content/new-submission/emailTemplates/ChipSpaCMS.tsx @@ -3,7 +3,6 @@ import { LoginInstructions, PackageDetails, BasicFooter, - DetailsHeading, Attachments, } from "../../email-components"; import { BaseEmailTemplate } from "../../email-templates"; @@ -13,7 +12,7 @@ export const ChipSpaCMSEmail = (props: { }) => { const variables = props.variables; const previewText = `CHIP SPA ${variables.id} Submitted`; - const heading = "The OneMAC Submission Portal received a CHIP State Plan Amendment"; + const heading = "The OneMAC Submission Portal received a CHIP State Plan Amendment:"; return ( } > - - + - } > - - + - } > - - + } > - } > - } > - renders a Amendment Waiver

This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

@@ -460,6 +460,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

renders a Amendment Waiver

- The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a CHIP State Plan Amendment:

-
-
-

- Details: -

-
    @@ -687,7 +679,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

    @@ -897,7 +889,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -936,6 +928,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    + + +

    + + state-plan-2024.pdf + +

    + + + + + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -1009,6 +1066,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver

    - - amended-language-1.pdf -
    -
    amended-language-2.pdf @@ -1068,6 +1158,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -1967,11 +2078,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + SPA Pages :

    @@ -1985,7 +2097,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + spa-page2.pdf

    @@ -2012,26 +2124,145 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Document Demonstrating Good-Faith Tribal Engagement + SPA Pages :

    -
    + +
    + + +
    +

    renders a Amendment Waiver

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -1231,6 +1388,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver > The OneMAC Submission Portal received a Medicaid SPA Submission: -

    -
    -

    - Details: -

    -
      @@ -1458,7 +1607,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -1706,7 +1855,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -1745,6 +1894,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

      - SPA Pages - : -

      - -
      -
      - -

      - SPA Pages - : -

      - -
      -
      - -

      - SPA Pages - : -

      - -
      -
      +

      renders a Amendment Waiver > spa-page1.pdf -
      -
      - - spa-page2.pdf -
      -
      - - spa-summary.pdf -
      -
      - - spa-changes-2024.pdf

    +

    + + spa-summary.pdf + +

    +
    + + + + + + + +
    +

    - Document Demonstrating Good-Faith Tribal Engagement + SPA Pages :

    -
    +
    +

    + + spa-changes-2024.pdf + +

    +
    + + + + + + + +
    + + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + +
    +

    renders a Amendment Waiver > tribal-engagement-summary.docx -
    +

    +
    + + + + + + + +
    + + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    +

    tribal-engagement-outreach.pdf -
    +

    +
    + + + + + + + + +
    + + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    +

    tribal-engagement-meeting-notes.pdf @@ -2085,6 +2400,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    +
    +

    + + page-23-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + page-24-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver

    - - page-23-update.pdf -
    -
    - - page-24-update.pdf -
    -
    page-25-update.pdf @@ -2158,6 +2538,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -2699,7 +3135,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -2738,6 +3174,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    + + + + +
    +

    renders a Amendment Waiver

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -2231,6 +2676,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver > The Submission Portal received a 1915(b) Temporary Extension Submission: -

    -
    -

    - Details: -

    -
      @@ -2666,7 +3102,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

      - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -2924,16 +3425,6 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver > The OneMAC Submission Portal received a 1915(b) Initial waiver submission: -

    -
    -

    - Details: -

    -
      @@ -2948,7 +3439,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -3234,7 +3725,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -3273,6 +3764,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Amendment Waiver > The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: -

      -
      -

      - Details: -

      -
        @@ -3500,7 +3983,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

        @@ -3786,7 +4269,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

        This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

        @@ -3825,6 +4308,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Amendment Waiver > The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: -

        -
        -

        - Details: -

        -
          @@ -4097,7 +4573,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

          @@ -4383,7 +4859,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

          This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

          @@ -4422,6 +4898,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Amendment Waiver > The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: -

          -
          -

          - Details: -

          -
            @@ -4650,7 +5118,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

            @@ -4936,7 +5404,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

            This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

            @@ -4975,6 +5443,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

            renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

            renders a Amendment Waiver

            This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

            @@ -5616,6 +6086,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

            renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

            renders a Amendment Waiver

            - The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a CHIP State Plan Amendment:

            -
            -
            -

            - Details: -

            -
              @@ -5843,7 +6305,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

              @@ -6053,7 +6515,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

              This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

              @@ -6092,6 +6554,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a Amendment Waiver :

              -
              +
    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -6165,6 +6692,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver

    - - amended-language-1.pdf -
    -
    amended-language-2.pdf @@ -6224,6 +6784,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -6387,6 +7014,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver > The OneMAC Submission Portal received a Medicaid SPA Submission: -

    -
    -

    - Details: -

    -
      @@ -6614,7 +7233,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -6862,7 +7481,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -6901,6 +7520,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Amendment Waiver :

      -
      +
    +

    + + spa-page1.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + spa-page2.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + spa-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver

    - - spa-page1.pdf -
    -
    - - spa-page2.pdf -
    -
    - - spa-summary.pdf -
    -
    spa-changes-2024.pdf @@ -7123,6 +7842,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    +
    +

    + + tribal-engagement-summary.docx + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + tribal-engagement-outreach.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver

    - - tribal-engagement-summary.docx -
    -
    - - tribal-engagement-outreach.pdf -
    -
    tribal-engagement-meeting-notes.pdf @@ -7241,6 +8026,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    +
    +

    + + page-23-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + page-24-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver

    - - page-23-update.pdf -
    -
    - - page-24-update.pdf -
    -
    page-25-update.pdf @@ -7314,6 +8164,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -7855,7 +8761,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -7894,6 +8800,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver :

    -
    + + + + +
    +

    renders a Amendment Waiver

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -7387,6 +8302,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Waiver > The Submission Portal received a 1915(b) Temporary Extension Submission: -

    -
    -

    - Details: -

    -
      @@ -7822,7 +8728,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

      - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Waiver

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -8080,16 +9051,6 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver > The OneMAC Submission Portal received a 1915(b) Initial waiver submission: -

    -
    -

    - Details: -

    -
      @@ -8104,7 +9065,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -8390,7 +9351,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -8429,6 +9390,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Amendment Waiver > The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: -

      -
      -

      - Details: -

      -
        @@ -8656,7 +9609,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

        @@ -8942,7 +9895,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

        This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

        @@ -8981,6 +9934,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Amendment Waiver > The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: -

        -
        -

        - Details: -

        -
          @@ -9253,7 +10199,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

          @@ -9539,7 +10485,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

          This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

          @@ -9578,6 +10524,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Amendment Waiver > The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: -

          -
          -

          - Details: -

          -
            @@ -9805,7 +10743,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

            @@ -10091,7 +11029,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

            This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

            @@ -10130,6 +11068,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

            renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

            renders a Amendment Waiver > The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: -

            -
            -

            - Details: -

            -
              @@ -10358,7 +11288,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

              @@ -10644,7 +11574,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver

              This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

              @@ -10683,6 +11613,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a AppkCMSEmail Pre

              This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

              @@ -11324,6 +12256,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a AppkCMSEmail Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a AppkCMSEmail Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a AppkCMSEmail Pre

              This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

              @@ -11908,6 +12842,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a AppkCMSEmail Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a AppkCMSEmail Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a Chipspa Preview

              This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

              @@ -12549,6 +13485,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a Chipspa Preview

              - The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a CHIP State Plan Amendment:

              -
              -
              -

              - Details: -

              -
                @@ -12776,7 +13704,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

                @@ -12986,7 +13914,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

                This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

                @@ -13025,6 +13953,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                renders a Chipspa Preview :

                -
                +
    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Chipspa Preview :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Chipspa Preview

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -13098,6 +14091,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Chipspa Preview :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + +
    +

    renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    + amended-language-2.pdf
    +

    +
    + + + + + + + +
    + + +

    + Cover Letter + : +

    + +
    +
    +

    - amended-language-2.pdf + cover-letter-george-harrison.pdf + +

    +
    + + + + + @@ -13157,11 +14275,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + Public Notice :

    @@ -13175,7 +14294,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + public-notice-oct-2024.pdf

    @@ -13202,11 +14321,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + Public Notice :

    @@ -13220,7 +14340,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + public-notice-sept-2024.pdf

    @@ -13247,26 +14367,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    +

    renders a Chipspa Preview

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -13320,6 +14413,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Chipspa Preview

    - The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a CHIP State Plan Amendment:

    -
    -
    -

    - Details: -

    -
      @@ -13548,7 +14633,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -13758,7 +14843,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -13797,6 +14882,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Chipspa Preview :

      -
      + +
    + + +
    + + +

    + Budget Documents + : +

    + +
    +
    +

    + + fy2024-budget.xlsx

    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Chipspa Preview :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + +
    +

    renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - state-plan-2024.pdf -
    + state-plan-financials.pdf +
    +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-1.pdf +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    - state-plan-summary.pdf -
    + amended-language-2.pdf
    +

    +
    + + + + + @@ -13870,21 +15158,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages + Budget Documents :

    @@ -13898,11 +15177,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    -
    - - amended-language-2.pdf + fy2024-budget.xlsx

    @@ -13929,11 +15204,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + Public Notice :

    @@ -13947,7 +15223,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + public-notice-oct-2024.pdf

    @@ -13974,11 +15250,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + Public Notice :

    @@ -13992,7 +15269,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + public-notice-sept-2024.pdf

    @@ -14019,26 +15296,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    +

    renders a Chipspa Preview

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -14092,6 +15342,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -14733,6 +15985,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C

    - The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a CHIP State Plan Amendment:

    -
    -
    -

    - Details: -

    -
      @@ -14960,7 +16204,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -15170,7 +16414,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -15209,6 +16453,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C :

      -
      + +
    + + +
    + + +

    + Cover Letter + : +

    + +
    +
    +

    - state-plan-financials.pdf + cover-letter-george-harrison.pdf

    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -15282,6 +16591,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - amended-language-1.pdf -
    -
    amended-language-2.pdf @@ -15341,6 +16683,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -15504,6 +16913,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C > The OneMAC Submission Portal received a Medicaid SPA Submission: -

    -
    -

    - Details: -

    -
      @@ -15731,7 +17132,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -15979,7 +17380,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -16018,6 +17419,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C :

      -
      +
    +

    + + spa-page1.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + spa-page2.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + spa-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - spa-page1.pdf -
    -
    - - spa-page2.pdf -
    -
    - - spa-summary.pdf -
    -
    spa-changes-2024.pdf @@ -16240,6 +17741,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    +
    +

    + + tribal-engagement-summary.docx + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + tribal-engagement-outreach.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - tribal-engagement-summary.docx -
    -
    - - tribal-engagement-outreach.pdf -
    -
    tribal-engagement-meeting-notes.pdf @@ -16358,6 +17925,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    +
    +

    + + page-23-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + page-24-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - page-23-update.pdf -
    -
    - - page-24-update.pdf -
    -
    page-25-update.pdf @@ -16431,6 +18063,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -16972,7 +18660,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -17011,6 +18699,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    + + + + +
    +

    renders a Initial Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -16504,6 +18201,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C > The Submission Portal received a 1915(b) Temporary Extension Submission: -

    -
    -

    - Details: -

    -
      @@ -16939,7 +18627,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

      - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -17197,16 +18950,6 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C > The OneMAC Submission Portal received a 1915(b) Initial waiver submission: -

    -
    -

    - Details: -

    -
      @@ -17221,7 +18964,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -17507,7 +19250,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -17546,6 +19289,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C > The OneMAC Submission Portal received a 1915(b) Initial waiver submission: -

      -
      -

      - Details: -

      -
        @@ -17774,7 +19509,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

        @@ -18060,7 +19795,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

        This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

        @@ -18099,6 +19834,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Initial Waiver C

        This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

        @@ -18740,6 +20477,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Initial Waiver C

        - The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a CHIP State Plan Amendment:

        -
        -
        -

        - Details: -

        -
          @@ -18967,7 +20696,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

          @@ -19177,7 +20906,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

          This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

          @@ -19216,6 +20945,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Initial Waiver C :

          -
          +
    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -19289,6 +21083,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - amended-language-1.pdf -
    -
    amended-language-2.pdf @@ -19348,6 +21175,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -19511,6 +21405,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C > The OneMAC Submission Portal received a Medicaid SPA Submission: -

    -
    -

    - Details: -

    -
      @@ -19738,7 +21624,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -19986,7 +21872,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -20025,6 +21911,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C :

      -
      +
    +

    + + spa-page1.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + spa-page2.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + spa-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - spa-page1.pdf -
    -
    - - spa-page2.pdf -
    -
    - - spa-summary.pdf -
    -
    spa-changes-2024.pdf @@ -20247,6 +22233,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    +
    +

    + + tribal-engagement-summary.docx + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + tribal-engagement-outreach.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - tribal-engagement-summary.docx -
    -
    - - tribal-engagement-outreach.pdf -
    -
    tribal-engagement-meeting-notes.pdf @@ -20365,6 +22417,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    +
    +

    + + page-23-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + page-24-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - page-23-update.pdf -
    -
    - - page-24-update.pdf -
    -
    page-25-update.pdf @@ -20438,6 +22555,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -20979,7 +23152,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -21018,6 +23191,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C :

    -
    + + + + +
    +

    renders a Initial Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -20511,6 +22693,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Waiver C > The Submission Portal received a 1915(b) Temporary Extension Submission: -

    -
    -

    - Details: -

    -
      @@ -20946,7 +23119,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

      - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Waiver C

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -21204,16 +23442,6 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C > The OneMAC Submission Portal received a 1915(b) Initial waiver submission: -

    -
    -

    - Details: -

    -
      @@ -21228,7 +23456,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -21514,7 +23742,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -21553,6 +23781,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Initial Waiver C > The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: -

      -
      -

      - Details: -

      -
        @@ -21780,7 +24000,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

        @@ -22066,7 +24286,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

        This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

        @@ -22105,6 +24325,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Initial Waiver C > The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: -

        -
        -

        - Details: -

        -
          @@ -22377,7 +24590,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

          @@ -22663,7 +24876,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

          This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

          @@ -22702,6 +24915,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Initial Waiver C > The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: -

          -
          -

          - Details: -

          -
            @@ -22929,7 +25134,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

            @@ -23215,7 +25420,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

            This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

            @@ -23254,6 +25459,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

            renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

            renders a Initial Waiver C > The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: -

            -
            -

            - Details: -

            -
              @@ -23481,7 +25678,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

              @@ -23767,7 +25964,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

              This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

              @@ -23806,6 +26003,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a Initial Waiver C > The OneMAC Submission Portal received a 1915(b) Initial waiver submission: -

              -
              -

              - Details: -

              -
                @@ -24033,7 +26222,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

                @@ -24319,7 +26508,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

                This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

                @@ -24358,6 +26547,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                renders a Initial Waiver C > The OneMAC Submission Portal received a 1915(b) Initial waiver submission: -

                -
                -

                - Details: -

                -
                  @@ -24586,7 +26767,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

                  @@ -24872,7 +27053,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C

                  This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

                  @@ -24911,6 +27092,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                  renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                  renders a Medicaid Spa Pre

                  This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

                  @@ -25552,6 +27735,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                  renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                  renders a Medicaid Spa Pre

                  - The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a CHIP State Plan Amendment:

                  -
                  -
                  -

                  - Details: -

                  -
                    @@ -25779,7 +27954,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

                    @@ -25989,7 +28164,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

                    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

                    @@ -26028,6 +28203,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                    renders a Medicaid Spa Pre :

                    -
                    +
    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -26101,6 +28341,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre

    - - amended-language-1.pdf -
    -
    amended-language-2.pdf @@ -26160,6 +28433,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -26323,6 +28663,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre > The OneMAC Submission Portal received a Medicaid SPA Submission: -

    -
    -

    - Details: -

    -
      @@ -26550,7 +28882,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -26798,7 +29130,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -26837,6 +29169,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid Spa Pre :

      -
      +
    +

    + + spa-page1.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + spa-page2.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + spa-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre

    - - spa-page1.pdf -
    -
    - - spa-page2.pdf -
    -
    - - spa-summary.pdf -
    -
    spa-changes-2024.pdf @@ -27059,6 +29491,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + tribal-engagement-summary.docx + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + tribal-engagement-outreach.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre

    - - tribal-engagement-summary.docx -
    -
    - - tribal-engagement-outreach.pdf -
    -
    tribal-engagement-meeting-notes.pdf @@ -27177,6 +29675,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + page-23-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + page-24-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre

    - - page-23-update.pdf -
    -
    - - page-24-update.pdf -
    -
    page-25-update.pdf @@ -27250,6 +29813,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -27323,6 +29951,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre > The OneMAC Submission Portal received a Medicaid SPA Submission: -

    -
    -

    - Details: -

    -
      @@ -27506,7 +30125,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -27754,7 +30373,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -27793,6 +30412,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid Spa Pre :

      -
      +
    +

    + + spa-page1.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + spa-page2.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + spa-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre

    - - spa-page1.pdf -
    -
    - - spa-page2.pdf -
    -
    - - spa-summary.pdf -
    -
    spa-changes-2024.pdf @@ -28015,6 +30734,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + tribal-engagement-summary.docx + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + tribal-engagement-outreach.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre

    - - tribal-engagement-summary.docx -
    -
    - - tribal-engagement-outreach.pdf -
    -
    tribal-engagement-meeting-notes.pdf @@ -28133,6 +30918,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + page-23-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre :

    -
    +
    +

    + + page-24-update.pdf + +

    +
    + + + + + + +
    +

    renders a Medicaid Spa Pre style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - page-23-update.pdf -
    -
    - - page-24-update.pdf -
    + page-25-update.pdf
    +

    +
    + + + + + @@ -28206,6 +31102,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid Spa Pre :

    -
    -
    - -

    - Public Notice - : -

    - -
    + + + + +
    + + +

    + Public Notice + : +

    + +
    +
    +

    - page-25-update.pdf + public-notice-oct-2024.pdf

    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid Spa Pre

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -28279,6 +31194,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -28875,6 +31791,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C

    - The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a CHIP State Plan Amendment:

    -
    -
    -

    - Details: -

    -
      @@ -29102,7 +32010,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -29312,7 +32220,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -29351,6 +32259,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C :

      -
      +
    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -29424,6 +32397,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - amended-language-1.pdf -
    -
    amended-language-2.pdf @@ -29483,6 +32489,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -29646,6 +32719,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C > The OneMAC Submission Portal received a Medicaid SPA Submission: -

    -
    -

    - Details: -

    -
      @@ -29873,7 +32938,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -30121,7 +33186,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -30160,6 +33225,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C :

      -
      +
    +

    + + spa-page1.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + spa-page2.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + spa-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - spa-page1.pdf -
    -
    - - spa-page2.pdf -
    -
    - - spa-summary.pdf -
    -
    spa-changes-2024.pdf @@ -30382,6 +33547,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    +
    +

    + + tribal-engagement-summary.docx + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + tribal-engagement-outreach.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - tribal-engagement-summary.docx -
    -
    - - tribal-engagement-outreach.pdf -
    -
    tribal-engagement-meeting-notes.pdf @@ -30500,6 +33731,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    +
    +

    + + page-23-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + page-24-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - page-23-update.pdf -
    -
    - - page-24-update.pdf -
    -
    page-25-update.pdf @@ -30573,6 +33869,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -31114,7 +34466,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -31153,6 +34505,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    + + + + +
    +

    renders a Renewal Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -30646,6 +34007,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C > The Submission Portal received a 1915(b) Temporary Extension Submission: -

    -
    -

    - Details: -

    -
      @@ -31081,7 +34433,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

      - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -31339,16 +34756,6 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C > The OneMAC Submission Portal received a 1915(b) Initial waiver submission: -

    -
    -

    - Details: -

    -
      @@ -31363,7 +34770,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -31649,7 +35056,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -31688,6 +35095,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C > The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: -

      -
      -

      - Details: -

      -
        @@ -31915,7 +35314,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

        @@ -32201,7 +35600,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

        This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

        @@ -32240,6 +35639,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Renewal Waiver C > The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: -

        -
        -

        - Details: -

        -
          @@ -32513,7 +35905,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

          @@ -32799,7 +36191,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

          This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

          @@ -32838,6 +36230,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Renewal Waiver C

          This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

          @@ -33524,6 +36919,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Renewal Waiver C

          - The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a CHIP State Plan Amendment:

          -
          -
          -

          - Details: -

          -
            @@ -33751,7 +37138,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

            @@ -33961,7 +37348,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

            This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

            @@ -34000,6 +37387,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

            renders a Renewal Waiver C :

            -
            +
    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -34073,6 +37525,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - amended-language-1.pdf -
    -
    amended-language-2.pdf @@ -34132,6 +37617,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -34295,6 +37847,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C > The OneMAC Submission Portal received a Medicaid SPA Submission: -

    -
    -

    - Details: -

    -
      @@ -34522,7 +38066,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -34770,7 +38314,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -34809,6 +38353,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C :

      -
      +
    +

    + + spa-page1.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + spa-page2.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + spa-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - spa-page1.pdf -
    -
    - - spa-page2.pdf -
    -
    - - spa-summary.pdf -
    -
    spa-changes-2024.pdf @@ -35031,6 +38675,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    +
    +

    + + tribal-engagement-summary.docx + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + tribal-engagement-outreach.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - tribal-engagement-summary.docx -
    -
    - - tribal-engagement-outreach.pdf -
    -
    tribal-engagement-meeting-notes.pdf @@ -35149,6 +38859,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    +
    +

    + + page-23-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + page-24-update.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - page-23-update.pdf -
    -
    - - page-24-update.pdf -
    -
    page-25-update.pdf @@ -35222,6 +38997,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -35763,7 +39594,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -35802,6 +39633,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C :

    -
    + + + + +
    +

    renders a Renewal Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -35295,6 +39135,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Waiver C > The Submission Portal received a 1915(b) Temporary Extension Submission: -

    -
    -

    - Details: -

    -
      @@ -35730,7 +39561,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

      - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Waiver C

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -35988,16 +39884,6 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C > The OneMAC Submission Portal received a 1915(b) Initial waiver submission: -

    -
    -

    - Details: -

    -
      @@ -36012,7 +39898,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -36298,7 +40184,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -36337,6 +40223,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Renewal Waiver C > The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: -

      -
      -

      - Details: -

      -
        @@ -36564,7 +40442,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

        @@ -36850,7 +40728,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

        This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

        @@ -36889,6 +40767,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

        renders a Renewal Waiver C > The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: -

        -
        -

        - Details: -

        -
          @@ -37161,7 +41032,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

          @@ -37447,7 +41318,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

          This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

          @@ -37486,6 +41357,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

          renders a Renewal Waiver C > The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: -

          -
          -

          - Details: -

          -
            @@ -37713,7 +41576,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

            @@ -37999,7 +41862,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

            This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

            @@ -38038,6 +41901,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

            renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

            renders a Renewal Waiver C > The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: -

            -
            -

            - Details: -

            -
              @@ -38265,7 +42120,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

              @@ -38551,7 +42406,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

              This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

              @@ -38590,6 +42445,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

              renders a Renewal Waiver C > The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: -

              -
              -

              - Details: -

              -
                @@ -38818,7 +42665,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

                @@ -39104,7 +42951,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C

                This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

                @@ -39143,6 +42990,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                renders a TempExt Preview

                This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

                @@ -39784,6 +43633,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                renders a TempExt Preview

                - The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a CHIP State Plan Amendment:

                -
                -
                -

                - Details: -

                -
                  @@ -40011,7 +43852,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

                  @@ -40221,7 +44062,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

                  This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

                  @@ -40260,6 +44101,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

                  renders a TempExt Preview :

                  -
                  +
    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a TempExt Preview :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a TempExt Preview

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -40333,6 +44239,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a TempExt Preview :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + +
    +

    renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    + amended-language-2.pdf
    +

    +
    + + + + + + + +
    + + +

    + Cover Letter + : +

    + +
    +
    +

    - amended-language-2.pdf + cover-letter-george-harrison.pdf + +

    +
    + + + + + @@ -40392,11 +44423,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + Public Notice :

    @@ -40410,7 +44442,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + public-notice-oct-2024.pdf

    @@ -40437,11 +44469,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + Public Notice :

    @@ -40455,7 +44488,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + public-notice-sept-2024.pdf

    @@ -40482,26 +44515,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    +

    renders a TempExt Preview

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -40555,6 +44561,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a TempExt Preview > The OneMAC Submission Portal received a Medicaid SPA Submission: -

    -
    -

    - Details: -

    -
      @@ -40782,7 +44780,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - https://mako-dev.cms.gov/ + this link .

      @@ -41030,7 +45028,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

      @@ -41069,6 +45067,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a TempExt Preview :

      -
      + +
    + + +
    + + +

    + Budget Documents + : +

    + +
    +
    +

    + + fy2024-budget.xlsx

    +

    + + spa-page1.pdf + +

    +
    + + + + + + + +
    +

    renders a TempExt Preview :

    -
    +
    +

    + + spa-page2.pdf + +

    +
    + + + + + + + +
    +

    renders a TempExt Preview :

    -
    +
    +

    + + spa-summary.pdf + +

    +
    + + + + + + +
    +

    renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - spa-page1.pdf -
    + spa-changes-2024.pdf
    +

    +
    + + + + + + + +
    + + +

    + Cover Letter + : +

    + +
    +
    +

    - spa-page2.pdf -
    + cover-letter-george-harrison.pdf
    +

    +
    + + + + + + + +
    + + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    +

    - spa-summary.pdf -
    + tribal-engagement-summary.docx
    +

    +
    + + + + + + + +
    + + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    +

    - spa-changes-2024.pdf + tribal-engagement-outreach.pdf + +

    +
    + + + + + + + +
    + + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    +

    + + tribal-engagement-meeting-notes.pdf + +

    +
    + + + + + + + +
    + + +

    + Existing State Plan Page(s) + : +

    + +
    +
    +

    + + page-23-update.pdf + +

    +
    + + + + + @@ -41291,11 +45665,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + Existing State Plan Page(s) :

    @@ -41309,7 +45684,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + page-25-update.pdf

    @@ -41336,31 +45711,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Document Demonstrating Good-Faith Tribal Engagement - : -

    - -
    -
    - -

    - Document Demonstrating Good-Faith Tribal Engagement - : -

    - -
    -
    - -

    - Document Demonstrating Good-Faith Tribal Engagement + Public Notice :

    @@ -41374,15 +45730,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - tribal-engagement-summary.docx -
    -
    - - tribal-engagement-outreach.pdf -
    -
    - - tribal-engagement-meeting-notes.pdf + public-notice-oct-2024.pdf

    @@ -41409,31 +45757,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Existing State Plan Page(s) - : -

    - -
    -
    - -

    - Existing State Plan Page(s) - : -

    - -
    -
    - -

    - Existing State Plan Page(s) + Public Notice :

    @@ -41447,15 +45776,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - page-23-update.pdf -
    -
    - - page-24-update.pdf -
    -
    - - page-25-update.pdf + public-notice-sept-2024.pdf

    @@ -41482,26 +45803,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    +

    renders a TempExt Preview

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -41555,6 +45849,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a TempExt Preview > The Submission Portal received a 1915(b) Temporary Extension Submission: -

    -
    -

    - Details: -

    -
      @@ -41990,7 +46275,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    @@ -42023,7 +46308,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -42062,6 +46347,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a TempExt Preview :

    -
    + + + + +
    + + +

    + Existing State Plan Page(s) + : +

    + +
    +
    +

    + + page-24-update.pdf

    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a TempExt Preview :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + @@ -42559,7 +46899,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -42598,6 +46938,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a TempExt Preview :

    -
    + + + + +
    +

    renders a TempExt Preview

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -42249,16 +46599,6 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview > The Submission Portal received a 1915(b) Temporary Extension Submission: -

    -
    -

    - Details: -

    -
      @@ -42526,7 +46866,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a TempExt Preview :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + @@ -387,7 +387,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -407,7 +407,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.


    renders a Amendment Capi > This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -
    -
    -

    - Details: -

    -
    +

    renders a TempExt Preview

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf diff --git a/lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap b/lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap index ae1c7fd88..1f35b564c 100644 --- a/lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap +++ b/lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap @@ -354,7 +354,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    renders a Amendment Capi

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -913,16 +903,6 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi > This response confirms that you submitted a Medicaid SPA to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Amendment Capi

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -1189,7 +1169,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -1205,7 +1185,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi > This response confirms the receipt of your Medicaid State Plan Amendment (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. + within 90 days, before Apr 1, 2023 @ 11:59pm EST.

    renders a Amendment Capi

    - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    @@ -1614,7 +1594,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -1653,6 +1633,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Capi :

    -
    + + + + +
    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Capi :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + +
    +

    renders a Amendment Capi

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -1846,18 +1891,8 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Amendment Capi

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -2162,7 +2197,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -2179,7 +2214,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Amendment Capi

    - This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: + This response confirms the submission of your 1915(b) Renewal Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Amendment Capi

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -2666,7 +2691,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -2683,7 +2708,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Amendment Capi

    - This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: + This response confirms the submission of your 1915(b) Amendment Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Amendment Capi

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -3170,7 +3185,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -3187,7 +3202,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Amendment Capi

    - This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: + This response confirms the submission of your 1915(b) Amendment Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Amendment Capi

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -3675,7 +3680,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -3692,7 +3697,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capi This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Amendment Cont

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -4230,7 +4235,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -4250,7 +4255,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.


    renders a Amendment Cont > This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Amendment Cont

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -4756,16 +4751,6 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont > This response confirms that you submitted a Medicaid SPA to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Amendment Cont

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -5032,7 +5017,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -5048,7 +5033,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont > This response confirms the receipt of your Medicaid State Plan Amendment (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. + within 90 days, before Apr 1, 2023 @ 11:59pm EST.

    renders a Amendment Cont

    - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    @@ -5457,7 +5442,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -5496,6 +5481,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Amendment Cont :

    -
    + + + + +
    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Amendment Cont :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + - - -
    +

    renders a Amendment Cont

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -5689,18 +5739,8 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Amendment Cont

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -6005,7 +6045,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -6022,7 +6062,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Amendment Cont

    - This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: + This response confirms the submission of your 1915(b) Renewal Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Amendment Cont

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -6509,7 +6539,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -6526,7 +6556,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Amendment Cont

    - This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: + This response confirms the submission of your 1915(b) Amendment Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Amendment Cont

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -7013,7 +7033,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -7030,7 +7050,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Amendment Cont

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Amendment Cont

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -7517,7 +7527,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -7534,7 +7544,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Amendment Cont

    - This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: + This response confirms the submission of your 1915(b) Renewal Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Amendment Cont

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -8021,7 +8021,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -8038,7 +8038,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Amendment Cont

    - This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: + This response confirms the submission of your 1915(b) Amendment Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Amendment Cont

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -8525,7 +8515,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -8542,7 +8532,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Amendment Cont

    - This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: + This response confirms the submission of your 1915(b) Amendment Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Amendment Cont

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -9030,7 +9010,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -9047,7 +9027,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Amendment Cont This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a AppKCMSEmailPr

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -9585,7 +9565,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a AppKCMSEmailPr

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -9605,7 +9585,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a AppKCMSEmailPr This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.


    renders a AppKCMSEmailPr

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -10085,7 +10065,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a AppKCMSEmailPr

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -10105,7 +10085,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a AppKCMSEmailPr This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.


    renders a Chipspa Previe

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -10642,7 +10622,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -10662,7 +10642,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.


    renders a Chipspa Previe > This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Chipspa Previe

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -11169,16 +11139,6 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe > This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Chipspa Previe

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -11835,7 +11795,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -11868,7 +11828,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -11888,7 +11848,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.


    renders a Initial Capita > This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Initial Capita

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -12394,16 +12344,6 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita > This response confirms that you submitted a Medicaid SPA to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Initial Capita

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -12670,7 +12610,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -12686,7 +12626,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita > This response confirms the receipt of your Medicaid State Plan Amendment (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. + within 90 days, before Apr 1, 2023 @ 11:59pm EST.

    renders a Initial Capita

    - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    @@ -13095,7 +13035,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -13134,6 +13074,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Initial Capita :

    -
    + + + + +
    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Initial Capita :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + - - -
    +

    renders a Initial Capita

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -13327,18 +13332,8 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Initial Capita

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -13643,7 +13638,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -13660,7 +13655,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Initial Capita

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Initial Capita

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -14148,7 +14133,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -14165,7 +14150,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Capita This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Initial Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -14703,7 +14688,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -14723,7 +14708,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.


    renders a Initial Contra > This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -
    -
    -

    - Details: -

    -
    -
    - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - CHIP SPA Package ID - : -

    -
    -

    - CO-24-1234 -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -

    - This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. -

    -

    - - If you have questions or did not expect this email, please contact - - - CHIPSPASubmissionMailBox@CMS.HHS.gov - -

    -

    - Thank you. -

    - - - - - - -
    -
    -
    - - - -
    - - - - - -
    - Medicaid SPA CO-24-1234 Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms that you submitted a Medicaid SPA to CMS for review: -

    -
    -
    -

    - Details: -

    -
    renders a Initial Contra

    - Medicaid SPA ID - : -

    - - - - -
    -

    - CO-24-1234 -

    -
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Jan 1, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -

    - This response confirms the receipt of your Medicaid State Plan Amendment - (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. -

    -

    - This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. - Any other correspondence will be disregarded. -

    -
    - - - - - - -
    -

    - If you have any questions or did not expect this email, please contact - - spa@cms.hhs.gov - - . -

    -
    -

    - Thank you. -

    -
    - - - - - -
    -
    -
    - - - -
    - - - - - -
    - Temporary Extension MD-2343.R00.TE09 Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms you have submitted a Temporary Extension to CMS for review -

    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - MD -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - Temporary Extension Request Number - : -

    -
    -

    - MD-2343.R00.TE09 -

    -
    - - - - - - - -
    -

    - Temporary Extension Type - : -

    -
    -

    - 1915(b) -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Mar 2, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. -

    - - -
    -
    -
    -

    - Files: -

    - - - - - - - -
    - -

    - Waiver Extension Request - : -

    - -
    -
    - -

    - Waiver Extension Request - : -

    - -
    -
    - -

    - Waiver Extension Request - : -

    - -
    -
    -

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    - - Third Extention Document for submission.pdf - -

    -
    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    -

    - Thank you. -

    -
    - - - - - - -
    -
    - - - - - - -
    -

    - If you have any questions or did not expect this email, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -
    -
    -
    - - -
    -
    - - - - - -
    - 1915(b) Initial Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: -

    -
    -
    -

    - Details: -

    -
    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - Initial Waiver Number - : -

    -
    -

    - CO-1234.R21.00 -

    -
    - - - - - - - -
    -

    - Waiver Authority - : -

    -
    -

    - 1915(b) -

    -
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Jan 1, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -

    - This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You - can expect a formal response to your submittal to be issued within - 90 days, before - Jan 1, 2023 @ 11:59pm EST - . -

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    -
    - - - - - - -
    -

    - If you have any questions, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -
    -

    - Thank you. -

    -
    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    -
    - - -
    -
    - - - - - -
    - 1915(b) Renewal Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: -

    -
    -
    -

    - Details: -

    -
    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - Renewal Waiver Number - : -

    -
    -

    - CO-1234.R21.00 -

    -
    - - - - - - - -
    -

    - Waiver Authority - : -

    -
    -

    - 1915(b) -

    -
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Jan 1, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -

    - This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You - can expect a formal response to your submittal to be issued within - 90 days, before - Jan 1, 2023 @ 11:59pm EST - . -

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    -
    - - - - - - -
    -

    - If you have any questions, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -
    -

    - Thank you. -

    -
    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    -
    - - -
    -
    - - - - - -
    - 1915(b) Amendment Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: -

    -
    -
    -

    - Details: -

    -
    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - Amendment Waiver Number - : -

    -
    -

    - CO-1234.R21.00 -

    -
    - - - - - - - -
    -

    - Waiver Authority - : -

    -
    -

    - 1915(b) -

    -
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Jan 1, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -

    - This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You - can expect a formal response to your submittal to be issued within - 90 days, before - Jan 1, 2023 @ 11:59pm EST - . -

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    -
    - - - - - - -
    -

    - If you have any questions, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -
    -

    - Thank you. -

    -
    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    -
    - - -
    -
    - - - - - -
    - 1915(b) Initial Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: -

    -
    -
    -

    - Details: -

    -
    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - Initial Waiver Number - : -

    -
    -

    - CO-9987.R21.00 -

    -
    - - - - - - - -
    -

    - Waiver Authority - : -

    -
    -

    - 1915(b) -

    -
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Jan 1, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -

    - This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You - can expect a formal response to your submittal to be issued within - 90 days, before - Jan 1, 2023 @ 11:59pm EST - . -

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    -
    - - - - - - -
    -

    - If you have any questions, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -
    -

    - Thank you. -

    -
    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    -
    - - -
    - , - "container":
    - - - - - -
    - 1915(b) Initial Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: -

    -
    -
    -

    - Details: -

    -
    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - Initial Waiver Number - : -

    -
    -

    - CO-9987.R21.00 -

    -
    - - - - - - - -
    -

    - Waiver Authority - : -

    -
    -

    - 1915(b) -

    -
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Jan 1, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -

    - This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You - can expect a formal response to your submittal to be issued within - 90 days, before - Jan 1, 2023 @ 11:59pm EST - . -

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    -
    - - - - - - -
    -

    - If you have any questions, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -
    -

    - Thank you. -

    -
    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    -
    - - -
    , - "debug": [Function], - "findAllByAltText": [Function], - "findAllByDisplayValue": [Function], - "findAllByLabelText": [Function], - "findAllByPlaceholderText": [Function], - "findAllByRole": [Function], - "findAllByTestId": [Function], - "findAllByText": [Function], - "findAllByTitle": [Function], - "findByAltText": [Function], - "findByDisplayValue": [Function], - "findByLabelText": [Function], - "findByPlaceholderText": [Function], - "findByRole": [Function], - "findByTestId": [Function], - "findByText": [Function], - "findByTitle": [Function], - "getAllByAltText": [Function], - "getAllByDisplayValue": [Function], - "getAllByLabelText": [Function], - "getAllByPlaceholderText": [Function], - "getAllByRole": [Function], - "getAllByTestId": [Function], - "getAllByText": [Function], - "getAllByTitle": [Function], - "getByAltText": [Function], - "getByDisplayValue": [Function], - "getByLabelText": [Function], - "getByPlaceholderText": [Function], - "getByRole": [Function], - "getByTestId": [Function], - "getByText": [Function], - "getByTitle": [Function], - "queryAllByAltText": [Function], - "queryAllByDisplayValue": [Function], - "queryAllByLabelText": [Function], - "queryAllByPlaceholderText": [Function], - "queryAllByRole": [Function], - "queryAllByTestId": [Function], - "queryAllByText": [Function], - "queryAllByTitle": [Function], - "queryByAltText": [Function], - "queryByDisplayValue": [Function], - "queryByLabelText": [Function], - "queryByPlaceholderText": [Function], - "queryByRole": [Function], - "queryByTestId": [Function], - "queryByText": [Function], - "queryByTitle": [Function], - "rerender": [Function], - "unmount": [Function], -} -`; - -exports[`Initial Submission State Email Snapshot Test > renders a Initial Contracting Waiver Preview Template 2`] = ` -{ - "asFragment": [Function], - "baseElement": -
    - - - - - -
    - Appendix K Amendment Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms the submission of your 1915(c) Waiver to CMS for review: -

    -
    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - Initial Waiver Number - : -

    -
    -

    - CO-1234.R21.00 -

    -
    - - - - - - - -
    -

    - Waiver Authority - : -

    -
    -

    - Amend -

    -
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Jan 1, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -
    -

    - This response confirms the receipt of your Waiver request or your - response to a Waiver Request for Additional Information (RAI). You can - expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. -

    -
    - - - - - - -
    -

    - If you have any questions or did not expect this email, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -
    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    -

    - Thank you. -

    -
    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    -
    - - -
    -
    - - - - - -
    - CHIP SPA CO-24-1234 Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -

    -
    -
    -

    - Details: -

    -
    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - CHIP SPA Package ID - : -

    -
    -

    - CO-24-1234 -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -

    - This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. -

    -

    - - If you have questions or did not expect this email, please contact - - - CHIPSPASubmissionMailBox@CMS.HHS.gov - -

    -

    - Thank you. -

    -
    - - - - - -
    -
    -
    - - -
    -
    - - - - - -
    - Medicaid SPA CO-24-1234 Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms that you submitted a Medicaid SPA to CMS for review: -

    -
    -
    -

    - Details: -

    -
    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - Medicaid SPA ID - : -

    -
    -

    - CO-24-1234 -

    -
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Jan 1, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -

    - This response confirms the receipt of your Medicaid State Plan Amendment - (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. -

    -

    - This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. - Any other correspondence will be disregarded. -

    -
    - - - - - - -
    -

    - If you have any questions or did not expect this email, please contact - - spa@cms.hhs.gov - - . -

    -
    -

    - Thank you. -

    -
    - - - - - -
    -
    -
    - - -
    -
    - - - - - -
    - Temporary Extension MD-2343.R00.TE09 Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms you have submitted a Temporary Extension to CMS for review -

    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - MD -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - Temporary Extension Request Number - : -

    -
    -

    - MD-2343.R00.TE09 -

    -
    - - - - - - - -
    -

    - Temporary Extension Type - : -

    -
    -

    - 1915(b) -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Mar 2, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. -

    - - -
    -
    -
    -

    - Files: -

    - - - - - - - -
    - -

    - Waiver Extension Request - : -

    - -
    -
    - -

    - Waiver Extension Request - : -

    - -
    -
    - -

    - Waiver Extension Request - : -

    - -
    -
    -

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    - - Third Extention Document for submission.pdf - -

    -
    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    -

    - Thank you. -

    -
    - - - - - - -
    -
    - - - - - - -
    -

    - If you have any questions or did not expect this email, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -
    -
    -
    - - -
    -
    - - - - - -
    - 1915(b) Initial Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: -

    -
    -
    -

    - Details: -

    -
    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - Initial Waiver Number - : -

    -
    -

    - CO-1234.R21.00 -

    -
    - - - - - - - -
    -

    - Waiver Authority - : -

    -
    -

    - 1915(b) -

    -
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Jan 1, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -

    - This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You - can expect a formal response to your submittal to be issued within - 90 days, before - Jan 1, 2023 @ 11:59pm EST - . -

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    -
    - - - - - - -
    -

    - If you have any questions, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -
    -

    - Thank you. -

    -
    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    -
    - - -
    -
    - - - - - -
    - 1915(b) Renewal Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - + + +
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: -

    -
    -
    -

    - Details: -

    -
    - - - - + + +
    - - - - @@ -21068,12 +15037,184 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - CO + CO-24-1234

    -

    - State or Territory + CHIP SPA Package ID :

    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

    +

    + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov + +

    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms that you submitted a Medicaid SPA to CMS for review: +

    + + + + @@ -21403,36 +15542,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra > - +
    renders a Initial Contra

    - Name + State or Territory :

    @@ -21106,7 +15247,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - George Harrison + CO

    @@ -21134,7 +15275,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - Email Address + Name :

    @@ -21144,7 +15285,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - george@example.com + George Harrison

    @@ -21172,7 +15313,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - Renewal Waiver Number + Email Address :

    @@ -21182,7 +15323,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - CO-1234.R21.00 + george@example.com

    @@ -21210,7 +15351,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - Waiver Authority + Medicaid SPA ID :

    @@ -21220,7 +15361,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - 1915(b) + CO-24-1234

    @@ -21296,7 +15437,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -21329,7 +15470,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -21341,18 +15482,16 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You - can expect a formal response to your submittal to be issued within - 90 days, before - Jan 1, 2023 @ 11:59pm EST - . + This response confirms the receipt of your Medicaid State Plan Amendment + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Apr 1, 2023 @ 11:59pm EST.

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. Any other correspondence will be disregarded.


    renders a Initial Contra

    - If you have any questions, please contact + If you have any questions or did not expect this email, please contact renders a Initial Contra > spa@cms.hhs.gov - or your state lead. + .

    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    @@ -21460,9 +15570,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra
    - 1915(b) Amendment Submitted + Temporary Extension MD-2343.R00.TE09 Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Initial Contra

    - This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: + This response confirms you have submitted a Temporary Extension to CMS for review

    -
    -
    -

    - Details: -

    -
    renders a Initial Contra

    - CO + MD

    @@ -21676,7 +15776,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - Amendment Waiver Number + Temporary Extension Request Number :

    @@ -21686,7 +15786,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - CO-1234.R21.00 + MD-2343.R00.TE09

    @@ -21714,7 +15814,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - Waiver Authority + Temporary Extension Type :

    @@ -21730,44 +15830,6 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    renders a Initial Contra

    - Jan 1, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    @@ -21833,9 +15895,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -21844,52 +15906,158 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra
    -

    - This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You - can expect a formal response to your submittal to be issued within - 90 days, before - Jan 1, 2023 @ 11:59pm EST - . -

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -


    +

    + Files: +

    - - - + + + + + +
    +
    + + +

    + Waiver Extension Request + : +

    + +
    +

    - If you have any questions, please contact - + Temporary Extention Document for submission.pdf + +

    +
    + + + + +
    + + +

    - spa@cms.hhs.gov - - or your state lead. + Waiver Extension Request + : +

    + +
    +
    +

    + + Second Extention Document for submission.pdf +

    + + + + + + + +
    + + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Third Extention Document for submission.pdf + +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    @@ -21908,29 +16076,32 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    +
    @@ -22021,18 +16192,8 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead.

    renders a Initial Contra

    - CO-9987.R21.00 + CO-1234.R21.00

    @@ -22304,7 +16465,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -22337,7 +16498,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -22354,7 +16515,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Initial Contra

    - This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: + This response confirms the submission of your 1915(b) Renewal Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Initial Contra

    - CO-9987.R21.00 + CO-1234.R21.00

    @@ -22808,7 +16959,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -22841,7 +16992,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -22858,7 +17009,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Initial Contra

    - This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: + This response confirms the submission of your 1915(b) Amendment Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Initial Contra

    - CO-1234.R21.01 + CO-1234.R21.00

    @@ -23312,7 +17453,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -23345,7 +17486,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -23362,7 +17503,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Initial Contra

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Initial Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -23849,7 +17980,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -23866,7 +17997,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Initial Contra

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Initial Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -24354,7 +18475,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -24371,7 +18492,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Initial Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Medicaid Spa P

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -24909,7 +19030,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -24929,7 +19050,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.


    renders a Medicaid Spa P > This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Medicaid Spa P

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -25435,16 +19546,6 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P > This response confirms that you submitted a Medicaid SPA to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Medicaid Spa P

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -25711,7 +19812,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -25727,7 +19828,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P > This response confirms the receipt of your Medicaid State Plan Amendment (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. + within 90 days, before Apr 1, 2023 @ 11:59pm EST.

    renders a Medicaid Spa P > This response confirms that you submitted a Medicaid SPA to CMS for review: -

    -
    -

    - Details: -

    -
    renders a Medicaid Spa P

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -26147,7 +20238,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -26163,7 +20254,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P > This response confirms the receipt of your Medicaid State Plan Amendment (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. + within 90 days, before Apr 1, 2023 @ 11:59pm EST.

    renders a Renewal Capita

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -26671,7 +20762,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -26691,7 +20782,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.


    renders a Renewal Capita > This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Renewal Capita

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -27197,16 +21278,6 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita > This response confirms that you submitted a Medicaid SPA to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Renewal Capita

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -27473,7 +21544,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -27489,7 +21560,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita > This response confirms the receipt of your Medicaid State Plan Amendment (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. + within 90 days, before Apr 1, 2023 @ 11:59pm EST.

    renders a Renewal Capita

    - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    @@ -27898,7 +21969,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -27937,6 +22008,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Capita :

    -
    + + + + +
    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Capita :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + +
    +

    renders a Renewal Capita

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -28130,18 +22266,8 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Renewal Capita

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -28446,7 +22572,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -28463,7 +22589,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Renewal Capita

    - This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: + This response confirms the submission of your 1915(b) Renewal Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Renewal Capita

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -28950,7 +23066,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -28967,7 +23083,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Renewal Capita

    - This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: + This response confirms the submission of your 1915(b) Renewal Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Renewal Capita

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -29455,7 +23561,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -29472,7 +23578,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capita This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Renewal Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -30010,7 +24116,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -30030,7 +24136,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.


    renders a Renewal Contra > This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Renewal Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -30536,16 +24632,6 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra > This response confirms that you submitted a Medicaid SPA to CMS for review: -
    -
    -

    - Details: -

    -
    renders a Renewal Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -30812,7 +24898,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -30828,7 +24914,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra > This response confirms the receipt of your Medicaid State Plan Amendment (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. + within 90 days, before Apr 1, 2023 @ 11:59pm EST.

    renders a Renewal Contra

    - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    @@ -31237,7 +25323,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -31276,6 +25362,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Renewal Contra :

    -
    + + + + +
    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a Renewal Contra :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + +
    +

    renders a Renewal Contra

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -31469,18 +25620,8 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Renewal Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -31785,7 +25926,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -31802,7 +25943,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Renewal Contra

    - This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: + This response confirms the submission of your 1915(b) Renewal Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Renewal Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -32289,7 +26420,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -32306,7 +26437,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Renewal Contra

    - This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: + This response confirms the submission of your 1915(b) Amendment Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Renewal Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -32793,7 +26914,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -32810,7 +26931,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Renewal Contra

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Renewal Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -33297,7 +27408,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -33314,7 +27425,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Renewal Contra

    - This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: + This response confirms the submission of your 1915(b) Renewal Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Renewal Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -33801,7 +27902,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -33818,7 +27919,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a Renewal Contra

    - This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: + This response confirms the submission of your 1915(b) Renewal Waiver to CMS for review:

    -
    -
    -

    - Details: -

    -
    renders a Renewal Contra

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -34306,7 +28397,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -34323,7 +28414,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contra This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST .

    renders a TempExt Previe

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -34861,7 +28952,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -34881,7 +28972,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.


    renders a TempExt Previe > This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -
    -
    -

    - Details: -

    -
    renders a TempExt Previe

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -35387,16 +29468,6 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe > This response confirms that you submitted a Medicaid SPA to CMS for review: -
    -
    -

    - Details: -

    -
    renders a TempExt Previe

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -35663,7 +29734,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -35679,7 +29750,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe > This response confirms the receipt of your Medicaid State Plan Amendment (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. + within 90 days, before Apr 1, 2023 @ 11:59pm EST.

    renders a TempExt Previe

    - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    @@ -36088,7 +30159,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -36127,6 +30198,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a TempExt Previe :

    -
    + + + + +
    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a TempExt Previe :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + @@ -36589,7 +30725,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe

    Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -36628,6 +30764,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a TempExt Previe :

    -
    + + + + +
    +

    renders a TempExt Previe

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf @@ -36556,7 +30692,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe

    - Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST

    +

    + + Temporary Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a TempExt Previe :

    -
    +
    +

    + + Second Extention Document for submission.pdf + +

    +
    + + + + + + + +
    +

    renders a TempExt Previe

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    Third Extention Document for submission.pdf diff --git a/lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap b/lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap index 101fdb6ea..3f171f9f8 100644 --- a/lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap +++ b/lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap @@ -306,7 +306,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a AppKCMSEmailPreview

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -345,6 +345,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a AppKCMSEmailPreview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a AppKCMSEmailPreview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a AppKCMSEmailPreview

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -814,6 +816,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a AppKCMSEmailPreview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a AppKCMSEmailPreview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Temp

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -1340,6 +1344,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Temp > The OneMAC Submission Portal received a CHIP SPA RAI Response Submission -

    -
    -

    - Details: -

    -
      @@ -1777,7 +1773,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a ChipSPA Preview Temp

      Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

      @@ -1816,6 +1812,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a ChipSPA Preview Temp :

      -
      +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA Preview Temp :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA Preview Temp

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -2024,6 +2088,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Temp > The OneMAC Submission Portal received a CHIP SPA RAI Response Submission -

    -
    -

    - Details: -

    -
      @@ -2462,7 +2518,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a ChipSPA Preview Temp

      Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

      @@ -2501,6 +2557,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a ChipSPA Preview Temp :

      -
      +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA Preview Temp :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA Preview Temp

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -2709,6 +2833,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -3235,6 +3361,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview > The OneMAC Submission Portal received a CHIP SPA RAI Response Submission -

    -
    -

    - Details: -

    -
      @@ -3672,7 +3790,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview

      Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

      @@ -3711,6 +3829,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Medicaid_SPA Preview :

      -
      -
      - -

      - Public Notice - : -

      - -
      +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + @@ -3919,11 +4059,12 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Tribal Consultation + Public Notice :

    @@ -3937,7 +4078,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - tribal-consultation-sept-2024.pdf + public-notice-nov-2024.pdf

    @@ -3964,11 +4105,12 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Other + Tribal Consultation :

    @@ -3982,7 +4124,53 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - misc-documents.pdf + tribal-consultation-sept-2024.pdf + +

    + +
    + +
    +

    renders a Medicaid_SPA Preview

    - - public-notice-oct-2024.pdf -
    -
    public-notice-sept-2024.pdf -
    -
    - - public-notice-nov-2024.pdf

    + + + + + @@ -4346,7 +4534,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -4385,6 +4573,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview :

    -
    + + + + +
    + + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf

    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid_SPA Preview :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid_SPA Preview

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -4593,6 +4849,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -5060,6 +5318,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid_SPA Preview :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -6478,11 +6774,12 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Tribal Consultation + Public Notice :

    @@ -6496,7 +6793,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - tribal-consultation-sept-2024.pdf + public-notice-sept-2024.pdf

    @@ -6523,11 +6820,104 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Other + Public Notice + : +

    + +
    + +
    + + +
    +

    renders a Medicaid_SPA Preview

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -5268,6 +5594,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -5794,6 +6122,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre > The OneMAC Submission Portal received a CHIP SPA RAI Response Submission -

    -
    -

    - Details: -

    -
      @@ -6231,7 +6551,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre

      Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

      @@ -6270,6 +6590,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

      renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

      - Public Notice - : -

      - -
      -
      - -

      - Public Notice - : -

      - -
      -
      +

      renders a Waiver Capitated Pre > public-notice-oct-2024.pdf -
      -
      - - public-notice-sept-2024.pdf -
      -
      - - public-notice-nov-2024.pdf

    +

    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + + +

    + Other :

    @@ -6905,7 +7295,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -6944,6 +7334,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver Capitated Pre :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver Capitated Pre

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -7152,6 +7610,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -7620,6 +8080,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver Capitated Pre :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver Capitated Pre

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -7828,6 +8356,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -8297,6 +8827,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver Capitated Pre :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -346,7 +346,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a AppKStateEmailPrev

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -365,7 +365,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a AppKStateEmailPrev > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST + to be issued within 90 days, before Apr 1, 2023 @ 11:59pm EST .

    renders a AppKStateEmailPrev

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -805,7 +805,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a AppKStateEmailPrev

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -824,7 +824,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a AppKStateEmailPrev > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST + to be issued within 90 days, before Apr 1, 2023 @ 11:59pm EST .

    renders a ChipSPA Preview Te

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -1321,7 +1321,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a ChipSPA Preview Te

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -1340,7 +1340,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a ChipSPA Preview Te > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST + to be issued within 90 days, before Apr 1, 2023 @ 11:59pm EST .

    renders a ChipSPA Preview Te

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -1741,7 +1741,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a ChipSPA Preview Te

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -1757,7 +1757,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a ChipSPA Preview Te > This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your - submittal to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST + submittal to be issued within 90 days, before Apr 1, 2023 @ 11:59pm EST .

    renders a ChipSPA Preview Te

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -2122,7 +2122,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a ChipSPA Preview Te

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -2138,7 +2138,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a ChipSPA Preview Te > This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your - submittal to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST + submittal to be issued within 90 days, before Apr 1, 2023 @ 11:59pm EST .

    renders a Medicaid_SPA Previ

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -2598,7 +2598,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -2617,7 +2617,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST + to be issued within 90 days, before Apr 1, 2023 @ 11:59pm EST .

    renders a Medicaid_SPA Previ

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -3018,7 +3018,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -3034,7 +3034,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ > This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your - submittal to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST + submittal to be issued within 90 days, before Apr 1, 2023 @ 11:59pm EST .

    renders a Medicaid_SPA Previ

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -3398,7 +3398,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -3414,7 +3414,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ > This response confirms receipt of your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.

    renders a Medicaid_SPA Previ

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -3787,7 +3787,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -3803,7 +3803,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ > This response confirms receipt of your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.

    renders a Waiver Capitated P

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -4271,7 +4271,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -4290,7 +4290,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST + to be issued within 90 days, before Apr 1, 2023 @ 11:59pm EST .

    renders a Waiver Capitated P

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -4691,7 +4691,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -4707,7 +4707,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P > This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your - submittal to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST + submittal to be issued within 90 days, before Apr 1, 2023 @ 11:59pm EST .

    renders a Waiver Capitated P

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -5071,7 +5071,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -5087,7 +5087,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P > This response confirms receipt of your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + before Apr 1, 2023 @ 11:59pm EST.

    renders a Waiver Capitated P

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -5497,7 +5497,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -5516,7 +5516,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST + to be issued within 90 days, before Apr 1, 2023 @ 11:59pm EST .

    renders a Waiver Capitated P

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    @@ -5956,7 +5956,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P

    Octopuses are usually very antisocial but when they’re under the influence of ecstasy they are more willing to spend time around each other or even hug other octopuses

    @@ -5975,7 +5975,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST + to be issued within 90 days, before Apr 1, 2023 @ 11:59pm EST .

    renders a AppKCMSE

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -233,6 +233,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a AppKCMSE

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -630,6 +632,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -1084,6 +1088,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA

    This some additional information about the request to upload additional documents.

    @@ -1480,6 +1486,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA :

    -
    + +
    + + +
    +

    renders a Waiver Capitated Pre

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -8505,6 +9103,7 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a AppKStateEmailPrev

    - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST

    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -1553,6 +1624,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA

    - - amended-language-1.pdf -
    -
    amended-language-2.pdf @@ -1612,6 +1716,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -2245,21 +2391,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages + CMS Form 179 :

    @@ -2273,11 +2410,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    -
    - - amended-language-2.pdf + state-plan-summary.pdf

    @@ -2304,11 +2437,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + CMS Form 179 :

    @@ -2322,7 +2456,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + state-plan-financials.pdf

    @@ -2349,11 +2483,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + SPA Pages :

    @@ -2367,7 +2502,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + amended-language-1.pdf

    @@ -2394,26 +2529,145 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Public Notice + SPA Pages :

    -
    + +
    + + +
    +

    renders a ChipSPA

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -1775,6 +1946,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA

    This some additional information about the request to upload additional documents.

    @@ -2172,26 +2345,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - CMS Form 179 - : -

    - -
    -
    - -

    - CMS Form 179 - : -

    - -
    -
    +

    renders a ChipSPA > state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    - - state-plan-financials.pdf

    +

    + + amended-language-2.pdf + +

    +
    + + + + + + + +
    +

    - Public Notice + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + + +

    + Budget Documents :

    -
    +
    +

    + + fy2024-budget.xlsx + +

    +
    + + + + + + +
    +

    renders a ChipSPA > public-notice-oct-2024.pdf -
    +

    +
    + + + + + + + +
    + + +

    + Public Notice + : +

    + +
    +
    +

    public-notice-sept-2024.pdf -
    +

    +
    + + + + + @@ -3390,20 +3705,103 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages + CMS Form 179 :

    -
    - -

    + +

    + + +
    + + +

    + Public Notice + : +

    + +
    +
    +

    public-notice-nov-2024.pdf @@ -2467,6 +2805,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -2921,6 +3261,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid

    This some additional information about the request to upload additional documents.

    @@ -3317,26 +3659,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - CMS Form 179 - : -

    - -
    -
    - -

    - CMS Form 179 - : -

    - -
    -
    +

    renders a Medicaid > state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    - - state-plan-financials.pdf

    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    + + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + state-plan-financials.pdf + +

    +
    + + + + + + +
    + + +

    SPA Pages :

    @@ -3419,8 +3817,50 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid > amended-language-1.pdf -
    +

    +
    + + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    amended-language-2.pdf @@ -3449,6 +3889,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -4081,21 +4563,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages + CMS Form 179 :

    @@ -4109,11 +4582,53 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    + state-plan-summary.pdf
    - - amended-language-2.pdf +

    + +
    + +
    +

    renders a Medicaid

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -3612,6 +4119,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid

    This some additional information about the request to upload additional documents.

    @@ -4008,26 +4517,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - CMS Form 179 - : -

    - -
    -
    - -

    - CMS Form 179 - : -

    - -
    -
    +

    renders a Medicaid > state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    - - state-plan-financials.pdf

    + + + + + @@ -4140,11 +4655,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + SPA Pages :

    @@ -4158,7 +4674,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + amended-language-1.pdf

    @@ -4185,11 +4701,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + SPA Pages :

    @@ -4203,7 +4720,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + amended-language-2.pdf

    @@ -4230,26 +4747,99 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Public Notice + Cover Letter :

    -
    + +
    + + +
    + + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + state-plan-financials.pdf

    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    +

    - Public Notice + Budget Documents :

    -
    +
    +

    + + fy2024-budget.xlsx + +

    +
    + + + + + + +
    +

    renders a Medicaid > public-notice-oct-2024.pdf -
    +

    +
    + + + + + + + +
    + + +

    + Public Notice + : +

    + +
    +
    +

    public-notice-sept-2024.pdf -
    +

    +
    + + + + + @@ -4773,22 +5422,105 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages + CMS Form 179 :

    -
    - -

    - SPA Pages - : + +

    + + +
    + + +

    + Public Notice + : +

    + +
    +
    +

    public-notice-nov-2024.pdf @@ -4303,6 +4977,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid

    This some additional information about the request to upload additional documents.

    @@ -4700,26 +5376,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - CMS Form 179 - : -

    - -
    -
    - -

    - CMS Form 179 - : -

    - -
    -
    +

    renders a Medicaid > state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    - - state-plan-financials.pdf

    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    + + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + state-plan-financials.pdf + +

    +
    + + + + + + +
    + + +

    + SPA Pages + :

    @@ -4802,8 +5534,50 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid > amended-language-1.pdf -
    +

    +
    + + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    amended-language-2.pdf @@ -4832,6 +5606,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -5918,21 +6736,104 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages + CMS Form 179 + : +

    + +
    + + + + +
    +

    renders a Medicaid

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -4995,6 +5836,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -5449,6 +6292,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C

    This some additional information about the request to upload additional documents.

    @@ -5845,26 +6690,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - CMS Form 179 - : -

    - -
    -
    - -

    - CMS Form 179 - : -

    - -
    -
    +

    renders a Waiver C > state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    - - state-plan-financials.pdf

    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    + + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + state-plan-financials.pdf + +

    +
    + + + + + + +
    + + +

    + SPA Pages :

    @@ -5947,8 +6848,50 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C > amended-language-1.pdf -
    +

    +
    + + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    amended-language-2.pdf @@ -5977,6 +6920,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -6140,6 +7150,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C

    This some additional information about the request to upload additional documents.

    @@ -6536,6 +7548,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    +
    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + +
    +

    renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - state-plan-2024.pdf -
    + state-plan-financials.pdf +
    +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-1.pdf +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    - state-plan-summary.pdf -
    + amended-language-2.pdf
    +

    +
    + + + + + @@ -6609,21 +7824,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages + Budget Documents :

    @@ -6637,11 +7843,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    -
    - - amended-language-2.pdf + fy2024-budget.xlsx

    @@ -6668,11 +7870,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + Public Notice :

    @@ -6686,7 +7889,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + public-notice-oct-2024.pdf

    @@ -6713,11 +7916,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + Public Notice :

    @@ -6731,7 +7935,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + public-notice-sept-2024.pdf

    @@ -6758,26 +7962,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    +

    renders a Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -6831,6 +8008,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C

    This some additional information about the request to upload additional documents.

    @@ -7227,6 +8406,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    + +
    + + +
    + + +

    + Cover Letter + : +

    + +
    +
    +

    - state-plan-financials.pdf + cover-letter-george-harrison.pdf

    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + +
    +

    renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - state-plan-2024.pdf -
    + state-plan-financials.pdf
    +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    - state-plan-summary.pdf -
    + amended-language-1.pdf
    +

    +
    + + + + + @@ -7300,21 +8636,58 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages + Cover Letter :

    -
    + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    - state-plan-financials.pdf + amended-language-2.pdf

    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + @@ -7359,11 +8728,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + Public Notice :

    @@ -7377,7 +8747,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + public-notice-oct-2024.pdf

    @@ -7404,11 +8774,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + Public Notice :

    @@ -7422,7 +8793,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + public-notice-sept-2024.pdf

    @@ -7449,26 +8820,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    +

    renders a Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -7522,6 +8866,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C

    This some additional information about the request to upload additional documents.

    @@ -7919,6 +9265,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    + +
    + + +
    +

    - SPA Pages + Budget Documents :

    @@ -7328,11 +8701,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    -
    - - amended-language-2.pdf + fy2024-budget.xlsx

    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -7992,6 +9403,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C

    - - amended-language-1.pdf -
    -
    amended-language-2.pdf @@ -8051,6 +9495,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -8214,6 +9725,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a AppKCMSE

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -309,6 +309,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a AppKCMSE

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -750,6 +752,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -1248,6 +1252,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA

    This some additional information about the request to upload additional documents.

    @@ -1688,6 +1694,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA :

    -
    +
    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -1761,6 +1832,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA

    - - amended-language-1.pdf -
    -
    amended-language-2.pdf @@ -1820,6 +1924,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + @@ -2497,21 +2643,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages + CMS Form 179 :

    @@ -2525,11 +2662,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    -
    - - amended-language-2.pdf + state-plan-summary.pdf

    @@ -2556,11 +2689,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + CMS Form 179 :

    @@ -2574,7 +2708,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + state-plan-financials.pdf

    @@ -2601,11 +2735,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + SPA Pages :

    @@ -2619,7 +2754,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + amended-language-1.pdf

    @@ -2646,26 +2781,145 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Public Notice + SPA Pages :

    -
    + +
    + + +
    +

    renders a ChipSPA

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -1983,6 +2154,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA

    This some additional information about the request to upload additional documents.

    @@ -2424,26 +2597,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - CMS Form 179 - : -

    - -
    -
    - -

    - CMS Form 179 - : -

    - -
    -
    +

    renders a ChipSPA > state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    - - state-plan-financials.pdf

    +

    + + amended-language-2.pdf + +

    +
    + + + + + + + +
    +

    - Public Notice + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + + +

    + Budget Documents :

    -
    +
    +

    + + fy2024-budget.xlsx + +

    +
    + + + + + + +
    +

    renders a ChipSPA > public-notice-oct-2024.pdf -
    +

    +
    + + + + + + + +
    + + +

    + Public Notice + : +

    + +
    +
    +

    public-notice-sept-2024.pdf -
    +

    +
    + + + + + @@ -3730,21 +4045,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages + CMS Form 179 :

    @@ -3758,11 +4064,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    -
    - - amended-language-2.pdf + state-plan-summary.pdf

    @@ -3789,11 +4091,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + CMS Form 179 :

    @@ -3807,7 +4110,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + state-plan-financials.pdf

    @@ -3834,11 +4137,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + SPA Pages :

    @@ -3852,7 +4156,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + amended-language-1.pdf

    @@ -3879,26 +4183,145 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Public Notice + SPA Pages :

    -
    + +
    + + +
    + + +

    + Public Notice + : +

    + +
    +
    +

    public-notice-nov-2024.pdf @@ -2719,6 +3057,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -3217,6 +3557,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid

    This some additional information about the request to upload additional documents.

    @@ -3657,26 +3999,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - CMS Form 179 - : -

    - -
    -
    - -

    - CMS Form 179 - : -

    - -
    -
    +

    renders a Medicaid > state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    - - state-plan-financials.pdf

    +

    + + amended-language-2.pdf + +

    +
    + + + + + + + +
    +

    - Public Notice + Cover Letter :

    -
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + + +

    + Budget Documents + : +

    + +
    +
    +

    + + fy2024-budget.xlsx + +

    +
    + + + + + + +
    +

    renders a Medicaid > public-notice-oct-2024.pdf -
    +

    +
    + + + + + + + +
    + + +

    + Public Notice + : +

    + +
    +
    +

    public-notice-sept-2024.pdf -
    +

    +
    + + + + + + + + +
    + + +

    + Public Notice + : +

    + +
    +
    +

    public-notice-nov-2024.pdf @@ -3952,6 +4459,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid

    This some additional information about the request to upload additional documents.

    @@ -4392,6 +4901,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid :

    -
    +
    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + +
    +

    renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - state-plan-2024.pdf -
    + state-plan-financials.pdf
    +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    - state-plan-summary.pdf -
    + amended-language-1.pdf +
    +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-2.pdf +

    +
    + + + + + @@ -4465,21 +5177,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages + Budget Documents :

    @@ -4493,11 +5196,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    -
    - - amended-language-2.pdf + fy2024-budget.xlsx

    @@ -4524,11 +5223,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + Public Notice :

    @@ -4542,7 +5242,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + public-notice-oct-2024.pdf

    @@ -4569,11 +5269,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + Public Notice :

    @@ -4587,7 +5288,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + public-notice-sept-2024.pdf

    @@ -4614,26 +5315,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    +

    renders a Medicaid

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -4687,6 +5361,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid

    This some additional information about the request to upload additional documents.

    @@ -5125,6 +5801,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid :

    -
    + +
    + + +
    + + +

    + Cover Letter + : +

    + +
    +
    +

    - state-plan-financials.pdf + cover-letter-george-harrison.pdf

    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + +
    +

    renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - state-plan-2024.pdf -
    + state-plan-financials.pdf
    +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    - state-plan-summary.pdf -
    + amended-language-1.pdf
    +

    +
    + + + + + @@ -5198,21 +6031,58 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages + Cover Letter :

    -
    + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    - state-plan-financials.pdf + amended-language-2.pdf

    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + @@ -5257,11 +6123,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + Public Notice :

    @@ -5275,7 +6142,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + public-notice-oct-2024.pdf

    @@ -5302,11 +6169,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + Public Notice :

    @@ -5320,7 +6188,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + public-notice-sept-2024.pdf

    @@ -5347,26 +6215,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    +

    renders a Medicaid

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -5420,6 +6261,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -5915,6 +6758,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C

    This some additional information about the request to upload additional documents.

    @@ -6355,6 +7200,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    + +
    + + +
    +

    - SPA Pages + Budget Documents :

    @@ -5226,11 +6096,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    -
    - - amended-language-2.pdf + fy2024-budget.xlsx

    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + +
    +

    renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - state-plan-2024.pdf -
    + state-plan-financials.pdf +
    +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-1.pdf +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    - state-plan-summary.pdf -
    + amended-language-2.pdf
    +

    +
    + + + + + @@ -6428,21 +7476,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages + Budget Documents :

    @@ -6456,11 +7495,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    -
    - - amended-language-2.pdf + fy2024-budget.xlsx

    @@ -6487,11 +7522,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + Public Notice :

    @@ -6505,7 +7541,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + public-notice-oct-2024.pdf

    @@ -6532,11 +7568,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + Public Notice :

    @@ -6550,7 +7587,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + public-notice-sept-2024.pdf

    @@ -6577,26 +7614,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    +

    renders a Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -6650,6 +7660,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C

    This some additional information about the request to upload additional documents.

    @@ -7090,6 +8102,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    + +
    + + +
    + + +

    + Cover Letter + : +

    + +
    +
    +

    - state-plan-financials.pdf + cover-letter-george-harrison.pdf

    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + +
    +

    renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - state-plan-2024.pdf -
    + state-plan-financials.pdf
    +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    - state-plan-summary.pdf -
    + amended-language-1.pdf
    +

    +
    + + + + + @@ -7163,21 +8332,58 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages + Cover Letter :

    -
    + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    - state-plan-financials.pdf + amended-language-2.pdf

    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + @@ -7222,11 +8424,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + Public Notice :

    @@ -7240,7 +8443,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + public-notice-oct-2024.pdf

    @@ -7267,11 +8470,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + Public Notice :

    @@ -7285,7 +8489,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + public-notice-sept-2024.pdf

    @@ -7312,26 +8516,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    +

    renders a Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -7385,6 +8562,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C

    This some additional information about the request to upload additional documents.

    @@ -7822,6 +9001,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    + +
    + + +
    +

    - SPA Pages + Budget Documents :

    @@ -7191,11 +8397,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    -
    - - amended-language-2.pdf + fy2024-budget.xlsx

    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + +
    +

    renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - state-plan-2024.pdf -
    + state-plan-financials.pdf +
    +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-1.pdf +

    +
    + + + + + + + +
    + + +

    + SPA Pages + : +

    + +
    +
    +

    - state-plan-summary.pdf -
    + amended-language-2.pdf
    +

    +
    + + + + + @@ -7895,21 +9277,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages + Budget Documents :

    @@ -7923,11 +9296,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf -
    -
    - - amended-language-2.pdf + fy2024-budget.xlsx

    @@ -7954,11 +9323,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Cover Letter + Public Notice :

    @@ -7972,7 +9342,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + public-notice-oct-2024.pdf

    @@ -7999,11 +9369,12 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    - Budget Documents + Public Notice :

    @@ -8017,7 +9388,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + public-notice-sept-2024.pdf

    @@ -8044,26 +9415,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    +

    renders a Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -8117,6 +9461,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C

    This some additional information about the request to upload additional documents.

    @@ -8558,6 +9904,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    + +
    + + +
    + + +

    + Cover Letter + : +

    + +
    +
    +

    - state-plan-financials.pdf + cover-letter-george-harrison.pdf

    +

    + + state-plan-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C :

    -
    +
    +

    + + state-plan-summary.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    state-plan-financials.pdf @@ -8631,6 +10042,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    +
    +

    + + amended-language-1.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C

    - - amended-language-1.pdf -
    -
    amended-language-2.pdf @@ -8690,6 +10134,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver C

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -8853,6 +10364,7 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Templ

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -605,7 +605,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a Appk Preview Templ

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -997,7 +997,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a ChipSPA Preview Te

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -1334,7 +1334,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a ChipSPA Preview Te

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -1672,7 +1672,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a ChipSPA Preview Te

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -2064,7 +2064,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a Medicaid_SPA Previ

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -2401,7 +2401,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a Medicaid_SPA Previ

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -2738,7 +2738,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a Medicaid_SPA Previ

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -3076,7 +3076,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a Medicaid_SPA Previ

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -3468,7 +3468,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a Waiver Capitated P

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -3805,7 +3805,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a Waiver Capitated P

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -4142,7 +4142,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a Waiver Capitated P

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -4476,7 +4476,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a Waiver Capitated P

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -4811,7 +4811,7 @@ exports[`Withdraw Package CMS Email Snapshot Test > renders a Waiver Capitated P

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    diff --git a/lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawPackageState.test.tsx.snap b/lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawPackageState.test.tsx.snap index 990f40168..1ff8c94e1 100644 --- a/lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawPackageState.test.tsx.snap +++ b/lib/libs/email/preview/Withdraw Package/State/__snapshots__/WithdrawPackageState.test.tsx.snap @@ -270,7 +270,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a Appk Preview Tem

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -645,7 +645,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a Appk Preview Tem

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -1077,7 +1077,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a ChipSPA Preview

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -1454,7 +1454,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a ChipSPA Preview

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -1824,7 +1824,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a ChipSPA Preview

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -2248,7 +2248,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a Medicaid_SPA Pre

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -2625,7 +2625,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a Medicaid_SPA Pre

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -2994,7 +2994,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a Medicaid_SPA Pre

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -3363,7 +3363,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a Medicaid_SPA Pre

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -3786,7 +3786,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a Waiver Capitated

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -4163,7 +4163,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a Waiver Capitated

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -4532,7 +4532,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a Waiver Capitated

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -4897,7 +4897,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a Waiver Capitated

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -5272,7 +5272,7 @@ exports[`Withdraw Package State Email Snapshot Test > renders a Waiver Capitated

    This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    diff --git a/lib/libs/email/preview/Withdraw Rai/CMS/__snapshots__/WithdrwRaiCMS.test.tsx.snap b/lib/libs/email/preview/Withdraw Rai/CMS/__snapshots__/WithdrwRaiCMS.test.tsx.snap index 16ecaf5d7..36f551551 100644 --- a/lib/libs/email/preview/Withdraw Rai/CMS/__snapshots__/WithdrwRaiCMS.test.tsx.snap +++ b/lib/libs/email/preview/Withdraw Rai/CMS/__snapshots__/WithdrwRaiCMS.test.tsx.snap @@ -270,7 +270,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Appk Preview Template

    This some additional information about the request to withdraw and what makes it important.

    @@ -309,6 +309,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Template :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Appk Preview Template :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Appk Preview Template

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -517,6 +585,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Template

    This some additional information about the request to withdraw and what makes it important.

    @@ -950,6 +1020,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Template :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Appk Preview Template :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Appk Preview Template

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -1158,6 +1296,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Templa

    This some additional information about the request to withdraw and what makes it important.

    @@ -1648,6 +1788,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Templa :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA Preview Templa :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a ChipSPA Preview Templa

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -1856,6 +2064,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a ChipSPA Preview Templa

    This some additional information about the request to withdraw and what makes it important.

    @@ -2495,7 +2705,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a ChipSPA Preview Templa

    This some additional information about the request to withdraw and what makes it important.

    @@ -2864,7 +3074,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview T

    This some additional information about the request to withdraw and what makes it important.

    @@ -2903,6 +3113,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview T :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid_SPA Preview T :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Medicaid_SPA Preview T

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -3111,6 +3389,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Medicaid_SPA Preview T

    This some additional information about the request to withdraw and what makes it important.

    @@ -3749,7 +4029,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview T

    This some additional information about the request to withdraw and what makes it important.

    @@ -4028,7 +4308,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview T

    This some additional information about the request to withdraw and what makes it important.

    @@ -4397,7 +4677,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Waiver Capitated Previ

    This some additional information about the request to withdraw and what makes it important.

    @@ -4436,6 +4716,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Previ :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver Capitated Previ :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver Capitated Previ

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -4644,6 +4992,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Previ

    This some additional information about the request to withdraw and what makes it important.

    @@ -5282,7 +5632,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Waiver Capitated Previ

    This some additional information about the request to withdraw and what makes it important.

    @@ -5560,7 +5910,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Waiver Capitated Previ

    This some additional information about the request to withdraw and what makes it important.

    @@ -5839,7 +6189,7 @@ exports[`Withdraw RAI CMS Email Snapshot Test > renders a Waiver Capitated Previ

    This some additional information about the request to withdraw and what makes it important.

    diff --git a/lib/libs/email/preview/Withdraw Rai/State/__snapshots__/WithdrawRaiState.test.tsx.snap b/lib/libs/email/preview/Withdraw Rai/State/__snapshots__/WithdrawRaiState.test.tsx.snap index 6f2b27670..db237f0d0 100644 --- a/lib/libs/email/preview/Withdraw Rai/State/__snapshots__/WithdrawRaiState.test.tsx.snap +++ b/lib/libs/email/preview/Withdraw Rai/State/__snapshots__/WithdrawRaiState.test.tsx.snap @@ -270,7 +270,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Appk Preview Templat

    This some additional information about the request to withdraw and what makes it important.

    @@ -645,7 +645,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Appk Preview Templat

    This some additional information about the request to withdraw and what makes it important.

    @@ -1077,7 +1077,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a ChipSPA Preview Temp

    This some additional information about the request to withdraw and what makes it important.

    @@ -1418,7 +1418,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a ChipSPA Preview Temp

    This some additional information about the request to withdraw and what makes it important.

    @@ -1701,7 +1701,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a ChipSPA Preview Temp

    This some additional information about the request to withdraw and what makes it important.

    @@ -2074,7 +2074,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Medicaid_SPA Preview

    This some additional information about the request to withdraw and what makes it important.

    @@ -2415,7 +2415,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Medicaid_SPA Preview

    This some additional information about the request to withdraw and what makes it important.

    @@ -2697,7 +2697,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Medicaid_SPA Preview

    This some additional information about the request to withdraw and what makes it important.

    @@ -2979,7 +2979,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Medicaid_SPA Preview

    This some additional information about the request to withdraw and what makes it important.

    @@ -3351,7 +3351,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Waiver Capitated Pre

    This some additional information about the request to withdraw and what makes it important.

    @@ -3692,7 +3692,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Waiver Capitated Pre

    This some additional information about the request to withdraw and what makes it important.

    @@ -3974,7 +3974,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Waiver Capitated Pre

    This some additional information about the request to withdraw and what makes it important.

    @@ -4312,7 +4312,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Waiver Capitated Pre

    This some additional information about the request to withdraw and what makes it important.

    @@ -4351,6 +4351,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver Capitated Pre :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver Capitated Pre

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -4559,6 +4627,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre

    This some additional information about the request to withdraw and what makes it important.

    @@ -5025,6 +5095,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre :

    -
    +
    +

    + + public-notice-oct-2024.pdf + +

    +
    + + + + + + + +
    +

    renders a Waiver Capitated Pre :

    -
    +
    +

    + + public-notice-sept-2024.pdf + +

    +
    + + + +
    +

    renders a Waiver Capitated Pre

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    public-notice-nov-2024.pdf @@ -5233,6 +5371,7 @@ exports[`Withdraw RAI State Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +

    Date: Mon, 13 Jan 2025 12:45:02 -0500 Subject: [PATCH 3/4] feat(test) additional coverage for get from (#1010) * feat(test) add test for getfrom * feat(test) additional coverage for getfrom --- lib/lambda/getForm.test.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/lambda/getForm.test.ts b/lib/lambda/getForm.test.ts index 4e58ab87c..c64cd0a0e 100644 --- a/lib/lambda/getForm.test.ts +++ b/lib/lambda/getForm.test.ts @@ -1,14 +1,6 @@ import { describe, it, expect, vi, beforeEach } from "vitest"; import { getForm } from "./getForm"; - -vi.mock("../libs/webforms", () => ({ - webformVersions: { - TESTFORM: { - v022024: { name: "Test Form", data: "hello world" }, - }, - }, -})); - +import { webformVersions } from "libs/webforms"; describe("forms handler", () => { beforeEach(() => { // Reset mocks before each test @@ -42,10 +34,18 @@ describe("forms handler", () => { it("returns 200 with form data if form ID and version are valid", async () => { const event = { - body: JSON.stringify({ formId: "TESTFORM", formVersion: "022024" }), + body: JSON.stringify({ formId: "ABP1", formVersion: "202401" }), + }; + const result = await getForm(event as any); + expect(result.statusCode).toBe(200); + expect(JSON.parse(result.body).header).toBe(webformVersions["ABP1"]["v202401"].header); + }); + it("returns 200 with form data if form ID and version are valid", async () => { + const event = { + body: JSON.stringify({ formId: "ABP1", formVersion: "" }), }; const result = await getForm(event as any); expect(result.statusCode).toBe(200); - expect(result.body).toContain("Test Form"); + expect(result.body).toBe("{}"); }); }); From c48365ec9c49fa323ada0dc74022ab9221efc170 Mon Sep 17 00:00:00 2001 From: rmuntaqim <146774930+rmuntaqim@users.noreply.github.com> Date: Mon, 13 Jan 2025 13:31:35 -0500 Subject: [PATCH 4/4] fix(ui): issues at `700px` (#924) --- react-app/src/components/BreadCrumb/BreadCrumb.tsx | 8 ++++++-- react-app/src/components/SearchForm/index.tsx | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/react-app/src/components/BreadCrumb/BreadCrumb.tsx b/react-app/src/components/BreadCrumb/BreadCrumb.tsx index cfca4089c..89a5fdf8c 100644 --- a/react-app/src/components/BreadCrumb/BreadCrumb.tsx +++ b/react-app/src/components/BreadCrumb/BreadCrumb.tsx @@ -74,8 +74,12 @@ export const BreadCrumbSeperator = () => ; export const BreadCrumbBar = ({ children }: React.PropsWithChildren) => { return ( -