diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1245dbedd..45c30afb4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -151,6 +151,8 @@ jobs: role-to-assume: ${{ secrets.AWS_OIDC_ROLE_TO_ASSUME }} aws-region: us-east-1 role-duration-seconds: 10800 + - name: Install Playwright with Chrome + run: npx playwright install --with-deps chromium - name: Run e2e tests run: run e2e - uses: actions/upload-artifact@v3 diff --git a/lib/libs/webforms/ABP1/v202402.ts b/lib/libs/webforms/ABP1/v202402.ts index 1f94aca25..470f05182 100644 --- a/lib/libs/webforms/ABP1/v202402.ts +++ b/lib/libs/webforms/ABP1/v202402.ts @@ -574,7 +574,7 @@ export const v202402: FormSchema = { label: "Is there an additional incremental amount?", labelClassName: - "font-bold mt-3", + "font-bold", horizontalLayout: true, props: { @@ -735,7 +735,7 @@ export const v202402: FormSchema = { label: "Is there an additional incremental amount?", labelClassName: - "font-bold mt-3", + "font-bold", horizontalLayout: true, props: { @@ -907,7 +907,7 @@ export const v202402: FormSchema = { label: "Is there an additional incremental amount?", labelClassName: - "font-bold mt-3", + "font-bold", horizontalLayout: true, props: { @@ -1079,7 +1079,7 @@ export const v202402: FormSchema = { label: "Is there an additional incremental amount?", labelClassName: - "font-bold mt-3", + "font-bold", horizontalLayout: true, props: { diff --git a/lib/libs/webforms/ABP2A/v202401.ts b/lib/libs/webforms/ABP2A/v202401.ts index 96d29380a..e941a55fb 100644 --- a/lib/libs/webforms/ABP2A/v202401.ts +++ b/lib/libs/webforms/ABP2A/v202401.ts @@ -19,15 +19,10 @@ export const v202401: FormSchema = { descriptionAbove: true, description: [ { - text: "The state/territory has fully aligned its EHB-defined Alternative Benefit Plan (ABP) benefits with its approved Medicaid state plan.", + text: "The state/territory has fully aligned its EHB-defined Alternative Benefit Plan (ABP) benefits with its approved Medicaid state plan; therefore, the state/territory meets the requirements for voluntary choice of benefit package for individuals exempt from mandatory participation in a Section 1937 ABP.", type: "default", classname: "font-bold block pb-1", }, - { - text: "Therefore, the state/territory meets the requirements for voluntary choice of benefit package for individuals exempt from mandatory participation in a Section 1937 ABP.", - type: "default", - classname: "font-bold block pt-4", - }, ], rules: { required: "* Required", diff --git a/react-app/src/components/RHF/FieldArray.tsx b/react-app/src/components/RHF/FieldArray.tsx index 59ba35a05..d83d17563 100644 --- a/react-app/src/components/RHF/FieldArray.tsx +++ b/react-app/src/components/RHF/FieldArray.tsx @@ -26,11 +26,11 @@ export const RHFFieldArray = ( }, [fieldArr, props.fields]); return ( -
+
{fieldArr.fields.map((FLD, index) => { return (
{props.fields.map((SLOT, i) => { @@ -64,13 +64,13 @@ export const RHFFieldArray = ( {props.removeText ?? "Remove Group"} )} - {fieldArr.fields.length > 1 && props.divider && ( -
+ {props.divider && ( +
)}
); })} -
+