Skip to content

Commit fa6a4ee

Browse files
authored
fix issue 1347 (#1348)
1 parent 1ba20d7 commit fa6a4ee

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

cypress/integration/security.spec.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,16 @@ describe('security', () => {
3333
})
3434
it('/privacy -> Privacy policy', () => {
3535
cy.visit(`/privacy`)
36-
cy.url().should('eq', 'https://www.notion.so/PRIVACY-POLICY-e9847a7777714eb08ba15a7a8eaee937')
36+
cy.url().should(
37+
'eq',
38+
'https://carbon-app.notion.site/PRIVACY-POLICY-65f08f57a8a14f91931d778f9a471a7d'
39+
)
3740
})
3841
it('/terms -> Terms', () => {
3942
cy.visit(`/terms`)
40-
cy.url().should('eq', 'https://www.notion.so/TERMS-OF-USE-ff2ce22a7e9848c89c6be46b44297583')
43+
cy.url().should(
44+
'eq',
45+
'https://carbon-app.notion.site/TERMS-OF-USE-d159661077fe4ef2974e6108b36aeece'
46+
)
4147
})
4248
})

next.config.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,14 @@ module.exports = withBundleAnalyzer(
6666
return [
6767
{
6868
source: '/privacy',
69-
destination: 'https://www.notion.so/PRIVACY-POLICY-e9847a7777714eb08ba15a7a8eaee937',
69+
destination:
70+
'https://carbon-app.notion.site/PRIVACY-POLICY-65f08f57a8a14f91931d778f9a471a7d',
7071
permanent: false,
7172
},
7273
{
7374
source: '/terms',
74-
destination: 'https://www.notion.so/TERMS-OF-USE-ff2ce22a7e9848c89c6be46b44297583',
75+
destination:
76+
'https://carbon-app.notion.site/TERMS-OF-USE-d159661077fe4ef2974e6108b36aeece',
7577
permanent: false,
7678
},
7779
{

0 commit comments

Comments
 (0)