@designcrowd/fe-shared-lib 1.2.22 → 1.2.23
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/{public → dist}/css/tailwind-brandCrowd.css +590 -541
- package/{public → dist}/css/tailwind-brandPage.css +513 -464
- package/{public → dist}/css/tailwind-crazyDomains.css +590 -541
- package/{public → dist}/css/tailwind-designCom.css +590 -541
- package/{public → dist}/css/tailwind-designCrowd.css +590 -541
- package/package.json +1 -1
- package/src/atoms/components/Icon/icons/maker/twitter.vue +0 -1
- package/src/experiences/components/SellDomainNameList/SellDomainNameList.vue +5 -2
package/package.json
CHANGED
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
import Button from '../../../atoms/components/Button/Button.vue';
|
|
67
67
|
import Price from '../../../atoms/components/Price/Price.vue';
|
|
68
68
|
import Events from '../../constants/event-constants';
|
|
69
|
-
import { sellDomainNameListTr } from '../../../useSharedLibTranslate';
|
|
69
|
+
import { sellDomainNameListTr, getCurrentLocale } from '../../../useSharedLibTranslate';
|
|
70
70
|
|
|
71
71
|
export default {
|
|
72
72
|
components: {
|
|
@@ -129,7 +129,10 @@ export default {
|
|
|
129
129
|
}),
|
|
130
130
|
);
|
|
131
131
|
if (this.isUserAuthenticated) {
|
|
132
|
-
|
|
132
|
+
const { checkoutUrl } = domain;
|
|
133
|
+
const url = new URL(checkoutUrl, window.location.origin);
|
|
134
|
+
url.searchParams.set('locale', getCurrentLocale());
|
|
135
|
+
window.location.href = url.toString();
|
|
133
136
|
}
|
|
134
137
|
},
|
|
135
138
|
getPrice(domain) {
|