Skip to content

Commit

Permalink
fix(webpage): change protocol on sharing post action to https
Browse files Browse the repository at this point in the history
  • Loading branch information
igr-santos authored Oct 30, 2023
1 parent da32d23 commit 8e5cdfe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clients/packages/webpage-client/src/Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ const Utils = {
const domain = publicRuntimeConfig.domainPublic || 'staging.bonde.org';

return mobilization?.custom_domain
? `http://${mobilization?.custom_domain}`
: `http://${mobilization?.slug}.${domain}`;
? `https://${mobilization?.custom_domain}`
: `https://${mobilization?.slug}.${domain}`;
},
imageUrl: '/static/images/check-mark-image.png'
}

export default Utils;
export default Utils;

0 comments on commit 8e5cdfe

Please sign in to comment.