From bfe2c72573283883b461b8e49a2f9c044e9339ed Mon Sep 17 00:00:00 2001 From: Konstantinos Paparas Date: Mon, 10 Feb 2025 11:46:10 +0100 Subject: [PATCH] fix: update wrong checkmark icon --- components/checkout/payment-method/CheckMark.vue | 2 +- nuxt.config.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/checkout/payment-method/CheckMark.vue b/components/checkout/payment-method/CheckMark.vue index e5a65c36..4df282e0 100644 --- a/components/checkout/payment-method/CheckMark.vue +++ b/components/checkout/payment-method/CheckMark.vue @@ -9,7 +9,7 @@ defineProps<{ diff --git a/nuxt.config.ts b/nuxt.config.ts index 379fa072..ec38218a 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -22,11 +22,11 @@ const nonIndexed = [ '/documents/', ]; -const domain = process.env.PROXY_DOMAIN || 'localhost'; +const domain = process.env.PROXY_DOMAIN ?? 'localhost'; const insecureProxy = process.env.PROXY_INSECURE; const proxyProtocol = insecureProxy === 'true' ? 'http' : 'https'; const baseUrl = `${proxyProtocol}://${domain}`; -const referrer = insecureProxy ? baseUrl : `${baseUrl}:443`; +const referrer = insecureProxy ? baseUrl : `${baseUrl}`; // change to ${baseUrl}:443 if you get 403 const proxy = { host: domain,