@timardex/cluemart-shared 1.3.31 → 1.3.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/hooks/index.cjs +2 -2
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/hooks/index.cjs
CHANGED
|
@@ -709,7 +709,7 @@ var testerVendorSchema = yup6.object().shape({
|
|
|
709
709
|
tryVisitorFeatures: yup6.boolean().oneOf([true], "This field is required"),
|
|
710
710
|
uploadStallProfileFirstWeek: yup6.boolean().oneOf([true], "This field is required"),
|
|
711
711
|
usefulnessExpectations: yup6.string().trim().optional()
|
|
712
|
-
}),
|
|
712
|
+
}).required("Questionary is required"),
|
|
713
713
|
sellingFrequency: yup6.mixed().oneOf(
|
|
714
714
|
Object.values(VendorSellingFrequency),
|
|
715
715
|
"Please select a valid selling frequency"
|
|
@@ -747,7 +747,7 @@ var testerEventSchema = yup6.object().shape({
|
|
|
747
747
|
organizerExpectations: yup6.string().trim().optional(),
|
|
748
748
|
spaceForClueMart: yup6.boolean().oneOf([true], "This field is required"),
|
|
749
749
|
uploadStallList: yup6.boolean().oneOf([true], "This field is required")
|
|
750
|
-
})
|
|
750
|
+
}).required("Questionary is required")
|
|
751
751
|
});
|
|
752
752
|
var testerSchema = yup6.object().shape({
|
|
753
753
|
businessName: yup6.string().required("Business name is required"),
|