Skip to content

Commit

Permalink
Merge pull request #3209 from glific/enhancement/character-limit
Browse files Browse the repository at this point in the history
Removed character limit for registered name
  • Loading branch information
kurund authored Feb 7, 2025
2 parents 6fda662 + acf69d8 commit f48b843
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const PlatformDetails = ({ handleStepChange, saveData }: FormStepProps) =
const [loading, setLoading] = useState(false);

const FormSchema = Yup.object().shape({
name: Yup.string().required(t('Name is required.')).max(40, t('Name should not exceed 40 characters')),
name: Yup.string().required(t('Name is required.')),
app_name: Yup.string().required(t('App name is required.')),
api_key: Yup.string().required(t('API key is required.')),
shortcode: Yup.string()
Expand Down
1 change: 0 additions & 1 deletion src/i18n/en/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,6 @@
"Designation is required.": "Designation is required.",
"Phone number is required.": "Phone number is required.",
"Enter a valid email.": "Enter a valid email.",
"Name should not exceed 40 characters": "Name should not exceed 40 characters",
"App name is required.": "App name is required.",
"API key is required.": "API key is required.",
"Please agree to the terms and conditions.": "Please agree to the terms and conditions.",
Expand Down

0 comments on commit f48b843

Please sign in to comment.