@everymatrix/player-profile-info 1.5.2 → 1.5.4

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": "@everymatrix/player-profile-info",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
4
4
  "main": "dist/player-profile-info.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "c0184ad3edaaa8f9ce54289cf544bb0589ef1fbe"
39
+ "gitHead": "0515078fefc5290a183afcfb2608cf265f2322c7"
40
40
  }
@@ -147,15 +147,14 @@
147
147
  playerMobileNumber = profileDetails.mobile?.number;
148
148
 
149
149
  // set values for the initial editable values object
150
- initialValuesArray = {
151
- address: profileDetails.address1,
152
- city: profileDetails.city,
153
- mobilePrefix: mobile?.prefix,
154
- mobileNumber: mobile?.number,
155
- postalCode: profileDetails.postalCode,
156
- securityAnswer: profileDetails.securityAnswer,
157
- securityQuestion: profileDetails.securityQuestion,
158
- }
150
+ initialValuesArray.address = profileDetails.address1;
151
+ initialValuesArray.city = profileDetails.city;
152
+ initialValuesArray.mobilePrefix = mobile?.prefix;
153
+ initialValuesArray.mobileNumber = mobile?.number;
154
+ initialValuesArray.postalCode = profileDetails.postalCode;
155
+ initialValuesArray.securityAnswer = profileDetails.securityAnswer;
156
+ initialValuesArray.securityQuestion = profileDetails.securityQuestion;
157
+
159
158
  break;
160
159
 
161
160
  case 'ProfileConsentData':