fix: footer 'Home' button scroll to top when on home page, fixed logic

This commit is contained in:
Stixx 2024-12-06 21:00:52 +01:00
parent 7b29d7055e
commit afbe05b4c8

@ -69,7 +69,7 @@ export const Footer = () =>
component={Link} component={Link}
to={'/'} to={'/'}
onClick={(event) => { onClick={(event) => {
if (window.location.pathname === '/') { if (['', '#/'].includes(window.location.hash)) {
event.preventDefault() event.preventDefault()
window.scrollTo(0, 0) window.scrollTo(0, 0)
} }