diff --git a/apps/spotlight/src/components/Header.astro b/apps/spotlight/src/components/Header.astro index 3e36ee842..d9c00ac6d 100644 --- a/apps/spotlight/src/components/Header.astro +++ b/apps/spotlight/src/components/Header.astro @@ -15,6 +15,9 @@ const getNavLinkClasses = (url: string) => {
- An official website of the United States government + A demo website of the United States government
Here’s how you know diff --git a/packages/common/src/locales/en/app.ts b/packages/common/src/locales/en/app.ts index eed068502..71e867f69 100644 --- a/packages/common/src/locales/en/app.ts +++ b/packages/common/src/locales/en/app.ts @@ -27,7 +27,7 @@ export const en = { }, paragraph: { fieldLabel: 'Paragraph Text', - displayName: 'Long answer', + displayName: 'Paragraph', errorTextMustContainChar: 'String must contain at least 1 character(s)', }, radioGroup: { diff --git a/packages/design/sass/_uswds-custom-styles.scss b/packages/design/sass/_uswds-custom-styles.scss index eb06ac8b1..d36f85594 100644 --- a/packages/design/sass/_uswds-custom-styles.scss +++ b/packages/design/sass/_uswds-custom-styles.scss @@ -133,13 +133,6 @@ iframe:focus { } } -/* A quick way to hide the submit button when form is in edit mode. Can be replaced with a programmatic solution in the future */ -.editPage { - .preview-form-button-wrapper { - display: none; - } -} - @include at-media("mobile-lg") { .usa-table th[scope="row"], .usa-table th[scope="row"]:nth-child(odd) { diff --git a/packages/design/src/Form/ActionBar/index.tsx b/packages/design/src/Form/ActionBar/index.tsx index be13bd8cd..8a597c279 100644 --- a/packages/design/src/Form/ActionBar/index.tsx +++ b/packages/design/src/Form/ActionBar/index.tsx @@ -4,7 +4,7 @@ import { PromptAction } from '@atj/forms'; export default function ActionBar({ actions }: { actions: PromptAction[] }) { return ( -
+
{actions.map((action, index) => { if (action.type === 'submit') { return ( diff --git a/packages/design/src/Form/components/PageSet/PageMenu/PageMenu.tsx b/packages/design/src/Form/components/PageSet/PageMenu/PageMenu.tsx index 9e6dfa671..ffa2d399a 100644 --- a/packages/design/src/Form/components/PageSet/PageMenu/PageMenu.tsx +++ b/packages/design/src/Form/components/PageSet/PageMenu/PageMenu.tsx @@ -12,7 +12,7 @@ export type PageMenuProps = { export const PageMenu = ({ pages }: PageMenuProps) => { return ( -