diff options
author | Vitaly Takmazov | 2023-02-01 10:55:34 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-02-01 10:55:34 +0300 |
commit | 225b85bfd43753a4748dca2bc47b7018294cdfd3 (patch) | |
tree | b6d7f27e2809897327042cff914f400d2b002066 /vnext/src | |
parent | 134c0eb207534e9e079e0a661163e71d8c5f3bdf (diff) |
Fix react-router links
Diffstat (limited to 'vnext/src')
-rw-r--r-- | vnext/src/App.js | 4 |
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">© 2008-2023, Juick team {footer && (<><br />Sponsors: <span dangerouslySetInnerHTML={{ __html: footer }}></span></>)}</div> <div id="footer-right"> - · <Link href="/help/contacts" rel="nofollow">Contacts</Link> - · <Link href="/help/tos" rel="nofollow">TOS</Link> + · <Link to="/help/contacts" rel="nofollow">Contacts</Link> + · <Link to="/help/tos" rel="nofollow">TOS</Link> </div> </div> </div> |