abmp-npm 10.3.11 → 10.3.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abmp-npm",
3
- "version": "10.3.11",
3
+ "version": "10.3.12",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "check-cycles": "madge --circular .",
@@ -1077,7 +1077,10 @@ async function personalDetailsOnReady({
1077
1077
  }
1078
1078
 
1079
1079
  function renderServices() {
1080
- setupRepeater('#servicesRepeater', selectedServices);
1080
+ // Pass a fresh array copy so the Wix repeater detects the change and
1081
+ // re-renders. Assigning the same array reference (mutated in place by
1082
+ // add/delete) is treated as a no-op, leaving stale chips on screen.
1083
+ setupRepeater('#servicesRepeater', [...selectedServices]);
1081
1084
  }
1082
1085
 
1083
1086
  function setupRepeater(repeaterId, data) {