Skip to content

Commit 9ce4055

Browse files
feat: update legal links (#1938)
1 parent a86128b commit 9ce4055

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

apps/browser-extension-wallet/.env.defaults

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ WEBSITE_URL=https://www.lace.io
4545
EMAIL_ADDRESS=lace@iohk.io
4646
HELP_URL=https://iohk.zendesk.com/hc/en-us/requests/new
4747
FAQ_URL=https://www.lace.io/faq
48-
PRIVACY_POLICY_URL=https://www.lace.io/lace-privacy-policy.pdf
49-
COOKIE_POLICY_URL=https://www.lace.io/lace-cookie-policy.pdf
50-
TERMS_OF_USE_URL=https://www.lace.io/iohktermsandconditions.pdf
48+
PRIVACY_POLICY_URL=https://www.lace.io/legal/lace-privacy-policy
49+
COOKIE_POLICY_URL=https://www.lace.io/legal/iog-cookie-policy
50+
TERMS_OF_USE_URL=https://www.lace.io/legal/lace-terms-of-use
5151
YOUTUBE_RECOVERY_PHRASE_VIDEO_URL=https://www.youtube-nocookie.com/embed/hOFVXo969rk?si=0a-hNDVME6eTboIX
5252
BANXA_LACE_URL=https://lacewallet.banxa-sandbox.com/
5353
BANXA_HOMEPAGE_URL=https://banxa.com/

apps/browser-extension-wallet/.env.developerpreview

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ WEBSITE_URL=https://www.lace.io
4343
EMAIL_ADDRESS=lace@iohk.io
4444
HELP_URL=https://iohk.zendesk.com/hc/en-us/requests/new
4545
FAQ_URL=https://www.lace.io/faq
46-
PRIVACY_POLICY_URL=https://www.lace.io/lace-privacy-policy.pdf
47-
COOKIE_POLICY_URL=https://www.lace.io/lace-cookie-policy.pdf
48-
TERMS_OF_USE_URL=https://www.lace.io/iohktermsandconditions.pdf
46+
PRIVACY_POLICY_URL=https://www.lace.io/legal/lace-privacy-policy
47+
COOKIE_POLICY_URL=https://www.lace.io/legal/iog-cookie-policy
48+
TERMS_OF_USE_URL=https://www.lace.io/legal/lace-terms-of-use
4949
YOUTUBE_RECOVERY_PHRASE_VIDEO_URL=https://www.youtube-nocookie.com/embed/hOFVXo969rk?si=0a-hNDVME6eTboIX
5050
BANXA_LACE_URL=https://lacewallet.banxa-sandbox.com/
5151
BANXA_HOMEPAGE_URL=https://banxa.com/

apps/browser-extension-wallet/.env.example

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ WEBSITE_URL=https://www.lace.io
4242
EMAIL_ADDRESS=lace@iohk.io
4343
HELP_URL=https://iohk.zendesk.com/hc/en-us/requests/new
4444
FAQ_URL=https://www.lace.io/faq
45-
PRIVACY_POLICY_URL=https://www.lace.io/lace-privacy-policy.pdf
46-
COOKIE_POLICY_URL=https://www.lace.io/lace-cookie-policy.pdf
47-
TERMS_OF_USE_URL=https://www.lace.io/iohktermsandconditions.pdf
45+
PRIVACY_POLICY_URL=https://www.lace.io/legal/lace-privacy-policy
46+
COOKIE_POLICY_URL=https://www.lace.io/legal/iog-cookie-policy
47+
TERMS_OF_USE_URL=https://www.lace.io/legal/lace-terms-of-use
4848
YOUTUBE_RECOVERY_PHRASE_VIDEO_URL=https://www.youtube-nocookie.com/embed/hOFVXo969rk?si=0a-hNDVME6eTboIX
4949
BANXA_LACE_URL=https://lacewallet.banxa-sandbox.com/
5050
BANXA_HOMEPAGE_URL=https://banxa.com/

packages/e2e-tests/src/assert/commonAssert.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ class CommonAssert {
7272
let expectedUrl;
7373
switch (linkName) {
7474
case 'Cookie policy':
75-
expectedUrl = 'https://www.lace.io/lace-cookie-policy.pdf';
75+
expectedUrl = 'https://www.lace.io/legal/iog-cookie-policy';
7676
break;
7777
case 'Privacy policy':
78-
expectedUrl = 'https://www.lace.io/lace-privacy-policy.pdf';
78+
expectedUrl = 'https://www.lace.io/legal/lace-privacy-policy';
7979
break;
8080
case 'Terms of service':
8181
case 'Terms and conditions':
82-
expectedUrl = 'https://www.lace.io/iohktermsandconditions.pdf';
82+
expectedUrl = 'https://www.lace.io/legal/lace-terms-of-use';
8383
break;
8484
default:
8585
throw new Error(`Unsupported legal link - ${linkName}`);

packages/e2e-tests/src/assert/onboarding/onboardingMainPageAssert.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ class OnboardingMainPageAssert extends OnboardingCommonAssert {
2222
async assertSeeTermsOfServiceLink() {
2323
await OnboardingMainPage.agreementTermsOfServiceLink.waitForDisplayed();
2424
expect(await OnboardingMainPage.agreementTermsOfServiceLink.getAttribute('href')).to.equal(
25-
'https://www.lace.io/iohktermsandconditions.pdf'
25+
'https://www.lace.io/legal/lace-terms-of-use'
2626
);
2727
}
2828

2929
async assertSeePrivacyPolicyLink() {
3030
await OnboardingMainPage.agreementPrivacyPolicyLink.waitForDisplayed();
3131
expect(await OnboardingMainPage.agreementPrivacyPolicyLink.getAttribute('href')).to.equal(
32-
'https://www.lace.io/lace-privacy-policy.pdf'
32+
'https://www.lace.io/legal/lace-privacy-policy'
3333
);
3434
}
3535

0 commit comments

Comments
 (0)