fix: footer 'Home' button scroll to top when on home page, fixed logic
All checks were successful
Open PR on Staging / audit_and_check (pull_request) Successful in 46s

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

View File

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