fix: clicking logo not redirecting to home

This commit is contained in:
Stixx 2024-12-06 15:49:57 +01:00
parent 092bb98670
commit 69efd9e09d

View File

@ -125,7 +125,7 @@ export const AppBar = () => {
src="/logo.svg"
alt="Logo"
onClick={() => {
if (window.location.pathname === '/') {
if (['', '#/'].includes(window.location.hash)) {
location.reload()
} else {
navigate('/')