diff --git a/src/pages/[platform]/build-ui/formbuilder/customize/index.mdx b/src/pages/[platform]/build-ui/formbuilder/customize/index.mdx index 6db1ba7118d..3c1ccbef0cd 100644 --- a/src/pages/[platform]/build-ui/formbuilder/customize/index.mdx +++ b/src/pages/[platform]/build-ui/formbuilder/customize/index.mdx @@ -2,7 +2,7 @@ import { getCustomStaticPath } from '@/utils/getCustomStaticPath'; export const meta = { title: 'Customize form inputs', - description: 'Use the Form Builder in Amplify Studio to customize React form components. You can add new form inputs, bind them to a field, customize labels, and add validation rules.', + description: 'Customize Amplify generated form inputs. You can add new form inputs, customize labels, and form action buttons.', platforms: [ 'javascript', 'react', diff --git a/src/pages/[platform]/build-ui/formbuilder/validations/index.mdx b/src/pages/[platform]/build-ui/formbuilder/validations/index.mdx index a1dd66eb005..49ddec5045b 100644 --- a/src/pages/[platform]/build-ui/formbuilder/validations/index.mdx +++ b/src/pages/[platform]/build-ui/formbuilder/validations/index.mdx @@ -2,7 +2,7 @@ import { getCustomStaticPath } from '@/utils/getCustomStaticPath'; export const meta = { title: 'Validate form data', - description: "Sanitize user input by adding validation rules to your form. By default, Amplify Studio infers a range of validation rules based on the data model. For example, given a data model with an 'AWSEmail' field, the generated form input will automatically run an email validation rule.", + description: "Add and customize validation rules on Amplify generated forms", platforms: [ 'javascript', 'react', @@ -23,9 +23,9 @@ export function getStaticProps(context) { }; } -Sanitize user input by adding validation rules to your form. By default, Amplify Studio infers a range of validation rules based on the data model. For example, given a data model with an `AWSEmail` field, the generated form input will automatically run an email validation rule. +Sanitize user input by adding validation rules to your form. By default, Amplify generated forms infers a range of validation rules based on the data model. For example, given a data model with an `AWSEmail` field, the generated form input will automatically run an email validation rule. -## Add validation rules +## Configurable validation rules By default, the following validation rules are available for you to configure: @@ -78,7 +78,7 @@ type ValidationResponse = { ### Add validation rules for nested JSON data -Amplify Studio Forms can also produce nested JSON object. For example, you can create a new `ProductForm` component based on the following JSON object: +Amplify generated forms can also produce nested JSON object. For example, you can create a new `ProductForm` component based on the following JSON object: ```json {