Skip to content

Commit

Permalink
removed character limit for registered name
Browse files Browse the repository at this point in the history
  • Loading branch information
akanshaaa19 committed Feb 6, 2025
1 parent 6fda662 commit ddd79fc
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit ddd79fc

Please sign in to comment.