All files / react-app/src/features/faq/faqs/spa spa-amendments.tsx

11.11% Statements 1/9
0% Branches 0/4
0% Functions 0/2
11.11% Lines 1/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 743x                                                                                                                                                  
export const SpaAmendments = () => (
  <div className="w-full space-y-2">
    <p>
      All Medicaid and CHIP state plan amendments (SPAs), <b>except </b>
      Medicaid SPA submissions processed in the Medicaid & CHIP Program System portal (MACPro), must
      be submitted in OneMac.
    </p>
    <p>
      Starting July 28, 2025 Medicaid Model Data Lab (MMDL) no longer accepts new submissions for
      these SPAs, including:
    </p>
    <ul className="ml-8 list-disc space-y-2" role="list">
      <li>Medicaid Alternative Benefit Plan (ABP)</li>
      <li>Medicaid Premiums & Cost Sharing</li>
      <li>CHIP Eligibility</li>
    </ul>
    <p>
      Pending SPAs submitted in MMDL before July 28, 2025 including those on RAI (request for
      additional information) status, will continue to be processed through MMDL.
    </p>
    <p>
      Templates and implementation guides for OneMAC SPAs can be downloaded from the respective FAQ:
    </p>
    <ul className="ml-8 list-disc space-y-2 text-primary" role="list">
      {[
        {
          text: "Where can I download Medicaid Alternative Benefit Plan (ABP) SPA templates?",
          href: "#abp-spa-templates",
        },
        {
          text: "Where can I download Medicaid Alternative Benefit Plan (ABP) SPA implementation guides?",
          href: "#abp-implementation-guides-spa",
        },
        {
          text: "Where can I download Medicaid Premiums and Cost Sharing SPA templates?",
          href: "#mpc-spa-templates",
        },
        {
          text: "Where can I download Medicaid Premiums and Cost Sharing SPA implementation guides?",
          href: "#mpc-spa-implementation-guides",
        },
        {
          text: "Where can I download CHIP eligibility SPA templates?",
          href: "#chip-spa-templates",
        },
        {
          text: "Where can I download CHIP eligibility SPA implementation guides?",
          href: "#chip-spa-implementation-guides",
        },
      ].map(({ href, text }) => (
        <li key={href}>
          <a
            href={href}
            onClick={(e) => {
              e.preventDefault();
              const targetElement = document.getElementById(href.substring(1));
              if (targetElement) {
                targetElement.scrollIntoView({ behavior: "smooth", block: "start" });
 
                const buttonElement = targetElement.querySelector("button");
                if (buttonElement.dataset.state === "closed") {
                  buttonElement.click();
                }
              }
            }}
          >
            {text}
          </a>
        </li>
      ))}
    </ul>
  </div>
);