fix: better UX when clicking on logo when on home screen or home button in footer
All checks were successful
Open PR on Staging / audit_and_check (pull_request) Successful in 38s

This commit is contained in:
Stixx 2024-12-02 15:01:29 +01:00
parent 8ece8283e1
commit 834d70d774
2 changed files with 17 additions and 1 deletions

View File

@ -121,7 +121,17 @@ export const AppBar = () => {
<Container>
<Toolbar className={styles.toolbar} disableGutters={true}>
<Box className={styles.logoWrapper}>
<img src="/logo.svg" alt="Logo" onClick={() => navigate('/')} />
<img
src="/logo.svg"
alt="Logo"
onClick={() => {
if (window.location.pathname === '/') {
location.reload()
} else {
navigate('/')
}
}}
/>
</Box>
<Box className={styles.rightSideBox}>

View File

@ -68,6 +68,12 @@ export const Footer = () =>
}}
component={Link}
to={'/'}
onClick={(event) => {
if (window.location.pathname === '/') {
event.preventDefault()
window.scrollTo(0, 0)
}
}}
variant={'text'}
>
Home