monkey-front-components 0.0.320 → 0.0.323
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/esm2020/lib/components/shared/products/providers/products.model.mjs +4 -4
- package/fesm2015/monkey-front-components.mjs +3 -3
- package/fesm2015/monkey-front-components.mjs.map +1 -1
- package/fesm2020/monkey-front-components.mjs +3 -3
- package/fesm2020/monkey-front-components.mjs.map +1 -1
- package/monkey-front-components-0.0.323.tgz +0 -0
- package/package.json +3 -3
- package/monkey-front-components-0.0.320.tgz +0 -0
|
@@ -2634,12 +2634,12 @@ class ProductsModel {
|
|
|
2634
2634
|
}[product];
|
|
2635
2635
|
let handled = 'https://assets.monkey.exchange';
|
|
2636
2636
|
if (domain.includes('monkey.credit')) {
|
|
2637
|
-
handled =
|
|
2637
|
+
handled = `credit/wl/${token}/login.svg`;
|
|
2638
2638
|
}
|
|
2639
2639
|
else {
|
|
2640
|
-
handled =
|
|
2640
|
+
handled = `${sufix}/${country}/wl/${token}/login.svg`;
|
|
2641
2641
|
}
|
|
2642
|
-
this.logo = handled
|
|
2642
|
+
this.logo = `https://assets.monkey.exchange/${handled}`.toLowerCase();
|
|
2643
2643
|
}
|
|
2644
2644
|
}
|
|
2645
2645
|
|