customer-module-frontend 2.0.0-beta.25 → 2.0.0-beta.26
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/customer-module.js
CHANGED
|
@@ -38763,8 +38763,8 @@ const Fw = () => {
|
|
|
38763
38763
|
variant: "contained",
|
|
38764
38764
|
onClick: k,
|
|
38765
38765
|
size: "medium",
|
|
38766
|
-
color: C || !e || u.name.trim() === e?.name.trim() && (u.phone_number.trim() || "") === (e?.phone_number?.trim() || "") ? "secondary" : "primary",
|
|
38767
|
-
disabled: C || !e || u.name.trim() === e?.name.trim() && (u.phone_number.trim() || "") === (e?.phone_number?.trim() || ""),
|
|
38766
|
+
color: C || !e || u.name.trim() === (e?.name ?? "").trim() && (u.phone_number.trim() || "") === (e?.phone_number?.trim() || "") ? "secondary" : "primary",
|
|
38767
|
+
disabled: C || !e || u.name.trim() === (e?.name ?? "").trim() && (u.phone_number.trim() || "") === (e?.phone_number?.trim() || ""),
|
|
38768
38768
|
className: "cm:!w-[80px] cm:border-none!",
|
|
38769
38769
|
children: C ? "Saving..." : "Save"
|
|
38770
38770
|
}
|