@designcrowd/fe-shared-lib 1.0.8-ml-82-1b → 1.0.8-ml-82-1c

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": "@designcrowd/fe-shared-lib",
3
- "version": "1.0.8-ml-82-1b",
3
+ "version": "1.0.8-ml-82-1c",
4
4
  "scripts": {
5
5
  "start": "npm run storybook",
6
6
  "build": "npm run build:css --production",
@@ -68,11 +68,11 @@ export default {
68
68
  },
69
69
  termsAndConditionsContent() {
70
70
  return {
71
- byProceeding: this.termsAndConditions?.byProceeding ?? 'By proceeding you accept our',
71
+ byProceeding: `${this.termsAndConditions?.byProceeding} ` ?? 'By proceeding you accept our ',
72
72
  termsOfUse: this.termsAndConditions?.termsOfUse ?? 'Terms of Use',
73
- and: this.termsAndConditions?.and ?? 'and',
73
+ and: ` ${this.termsAndConditions?.and} ` ?? ' and ',
74
74
  privacyPolicy: this.termsAndConditions?.privacyPolicy ?? 'Privacy Policy',
75
- agreeToFutureUpdates: this.termsAndConditions?.agreeToFutureUpdates ?? 'and agree to receive future updates from'
75
+ agreeToFutureUpdates: ` ${this.termsAndConditions?.agreeToFutureUpdates}` ?? ' and agree to receive future updates from'
76
76
  };
77
77
  },
78
78
  },