@timardex/cluemart-shared 1.2.33 → 1.2.34

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/index.mjs CHANGED
@@ -926,13 +926,6 @@ var validateVerificationTokenFields = [
926
926
 
927
927
  // src/formFields/user.ts
928
928
  var profileFields = [
929
- {
930
- disabled: true,
931
- helperText: "Email cannot be changed",
932
- keyboardType: "email-address",
933
- name: "email",
934
- placeholder: "Email"
935
- },
936
929
  {
937
930
  ...emailField,
938
931
  disabled: true,
@@ -4913,6 +4906,7 @@ var testersSchema = yup6.object().shape({
4913
4906
  categories: yup6.array().nullable().when("resourceType", {
4914
4907
  is: "vendor" /* VENDOR */,
4915
4908
  then: () => categorySchema.min(1, "Category list must contain at least one item").required("Categories required"),
4909
+ // eslint-disable-next-line sort-keys
4916
4910
  otherwise: () => yup6.array().nullable().notRequired()
4917
4911
  }),
4918
4912
  companyName: yup6.string().required("Company name is required"),