aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-02-01 10:55:34 +0300
committerGravatar Vitaly Takmazov2023-02-01 10:55:34 +0300
commit225b85bfd43753a4748dca2bc47b7018294cdfd3 (patch)
treeb6d7f27e2809897327042cff914f400d2b002066
parent134c0eb207534e9e079e0a661163e71d8c5f3bdf (diff)
Fix react-router links
-rw-r--r--vnext/src/App.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/vnext/src/App.js b/vnext/src/App.js
index cb2008fa..125b6fda 100644
--- a/vnext/src/App.js
+++ b/vnext/src/App.js
@@ -175,8 +175,8 @@ export default function App({ footer }) {
<div id="footer-left">&copy; 2008-2023, Juick team
{footer && (<><br />Sponsors: <span dangerouslySetInnerHTML={{ __html: footer }}></span></>)}</div>
<div id="footer-right">
- &nbsp;&middot;&nbsp;<Link href="/help/contacts" rel="nofollow">Contacts</Link>
- &nbsp;&middot;&nbsp;<Link href="/help/tos" rel="nofollow">TOS</Link>
+ &nbsp;&middot;&nbsp;<Link to="/help/contacts" rel="nofollow">Contacts</Link>
+ &nbsp;&middot;&nbsp;<Link to="/help/tos" rel="nofollow">TOS</Link>
</div>
</div>
</div>