diff --git a/.changeset/sweet-dragons-stare.md b/.changeset/sweet-dragons-stare.md new file mode 100644 index 0000000000..94f401d920 --- /dev/null +++ b/.changeset/sweet-dragons-stare.md @@ -0,0 +1,5 @@ +--- +"@bigcommerce/catalyst-core": patch +--- + +fix validation message for email on account settings page diff --git a/core/app/[locale]/(default)/account/(tabs)/settings/_components/text-field.tsx b/core/app/[locale]/(default)/account/(tabs)/settings/_components/text-field.tsx index a5b2dce8bd..533c2f848e 100644 --- a/core/app/[locale]/(default)/account/(tabs)/settings/_components/text-field.tsx +++ b/core/app/[locale]/(default)/account/(tabs)/settings/_components/text-field.tsx @@ -49,12 +49,20 @@ export const TextField = ({ /> {isRequired && ( - - {t(fieldNameById ?? 'empty')} - + <> + + {t(fieldNameById ?? 'empty')} + + + {t(fieldNameById ?? 'empty')} + + )} );