Skip to content

Commit

Permalink
fix: update wrong checkmark icon
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos committed Feb 10, 2025
1 parent f2e9113 commit bfe2c72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/checkout/payment-method/CheckMark.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defineProps<{
<RuiBadge
:model-value="selected"
color="primary"
icon="check-line"
icon="lu-check"
/>
</div>
</template>
Expand Down
4 changes: 2 additions & 2 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit bfe2c72

Please sign in to comment.