This commit is contained in:
2024-07-26 15:03:15 +05:30
parent 970d0fae28
commit 9b83e090c0

View File

@@ -84,7 +84,7 @@ const schema = yup.object().shape({
comment: yup.string()
.min(10, "Comment must be at least 10 characters long")
.max(150, "Comment must be at most 150 characters long"),
.max(100, "Comment must be at most 100 characters long"),
expectedReturn: yup
.number()
@@ -359,7 +359,7 @@ const IODetails = ({ enableNextTab, index, data }) => {
width: "100%",
options: investmentTypeOptions,
value: IObyID?.data?.comment,
maxLength:150
maxLength:100
},
];
//=======================[ Editor ]