Skip to content

Commit cb9a723

Browse files
authored
Merge pull request #694 from PolymathNetwork/fix/tos
Fix/tos
2 parents b851c29 + aed019b commit cb9a723

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

packages/new-polymath-ui/src/components/Footer/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const Footer = (props: FooterProps) => {
2525
<Link
2626
href={
2727
props.termsOfServiceUrl ||
28-
'https://polymath.network/termsofservice.html'
28+
'https://polymath.network/terms-of-service'
2929
}
3030
>
3131
Terms Of Service
@@ -35,7 +35,7 @@ export const Footer = (props: FooterProps) => {
3535
<Link
3636
href={
3737
props.privacyPolicyUrl ||
38-
'https://polymath.network/privacypolicy.html'
38+
'https://polymath.network/privacy-policy'
3939
}
4040
>
4141
Privacy Policy

packages/polymath-ui/src/components/Footer/Footer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const Footer = (props: Props) => {
8383
<a
8484
href={
8585
props.termsOfService ||
86-
'https://polymath.network/termsofservice.html'
86+
'https://polymath.network/terms-of-service'
8787
}
8888
target="_blank"
8989
rel="noopener noreferrer"
@@ -95,7 +95,7 @@ const Footer = (props: Props) => {
9595
<a
9696
href={
9797
props.privacyPolicy ||
98-
'https://polymath.network/privacypolicy.html'
98+
'https://polymath.network/privacy-policy'
9999
}
100100
target="_blank"
101101
rel="noopener noreferrer"

packages/polymath-ui/src/components/Footer/__tests__/__snapshots__/Footer.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ exports[`renders without crashing 1`] = `
101101
>
102102
<li>
103103
<a
104-
href="https://polymath.network/termsofservice.html"
104+
href="https://polymath.network/terms-of-service"
105105
rel="noopener noreferrer"
106106
target="_blank"
107107
>
@@ -110,7 +110,7 @@ exports[`renders without crashing 1`] = `
110110
</li>
111111
<li>
112112
<a
113-
href="https://polymath.network/privacypolicy.html"
113+
href="https://polymath.network/privacy-policy"
114114
rel="noopener noreferrer"
115115
target="_blank"
116116
>

packages/polymath-ui/src/components/SignUpPage/SignUpForm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class SignUpForm extends Component<Props> {
7171
I accept the&nbsp;
7272
<Link
7373
target="_blank"
74-
href="https://polymath.network/termsofservice.html"
74+
href="https://polymath.network/terms-of-service"
7575
>
7676
Terms of Service
7777
</Link>

0 commit comments

Comments
 (0)