fix: hide NavBar on specific domain names

This commit is contained in:
Mo Tarbin
2026-02-10 11:10:50 -05:00
parent f5b0f06bba
commit e99aae3ed4

View File

@@ -190,8 +190,8 @@ const NavBar = () => {
return null
}
if (
location.pathname === '/' &&
import.meta.env.VITE_IS_LANDING_DEFAULT === 'true'
window.location.hostname === 'www.donetick.com' ||
window.location.hostname === 'donetick.com'
) {
return null
}