@designcrowd/fe-shared-lib 1.2.2-ml-jj-2 → 1.2.2-ml-jj-3

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.2.2-ml-jj-2",
3
+ "version": "1.2.2-ml-jj-3",
4
4
  "scripts": {
5
5
  "start": "run-p storybook watch:translation",
6
6
  "build": "npm run build:css --production",
@@ -53,7 +53,7 @@ export default {
53
53
  if (this.isDomainCredit) {
54
54
  return 'Domain credit used';
55
55
  }
56
-
56
+
57
57
  if (!this.amount || this.amount === 0) {
58
58
  return 'Free';
59
59
  }
@@ -11,7 +11,6 @@ export default {
11
11
  const locale = 'en-US';
12
12
 
13
13
  const loadTranslationAsync = async () => {
14
- console.log('HERE');
15
14
  await setLocaleAsync(locale);
16
15
  };
17
16
 
@@ -450,7 +450,6 @@ export default {
450
450
  },
451
451
  computed: {
452
452
  firstTimePublishHeaderLabel() {
453
- console.log('aaa', this.brandPageDisplayName);
454
453
  return this.tr('publishBrandPageModal.firstTimePublishHeaderLabel', {
455
454
  brandPageDisplayName: this.brandPageDisplayName,
456
455
  });
@@ -24,8 +24,6 @@ const setLocaleAsync = async (locale = 'en-US') => {
24
24
 
25
25
  const languageFile = (await relativePathsToTranslationFiles[localeToUse]()).default;
26
26
 
27
- console.log('ss', localeToUse, languageFile);
28
-
29
27
  await i18next.addResourceBundle(localeToUse, 'fe-shared-lib', {
30
28
  ...languageFile,
31
29
  });