From e99aae3ed4afaa2a039de1a87ef107a40848feea Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Tue, 10 Feb 2026 11:10:50 -0500 Subject: [PATCH] fix: hide NavBar on specific domain names --- src/views/components/NavBar.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/components/NavBar.jsx b/src/views/components/NavBar.jsx index 6517c15..653d418 100644 --- a/src/views/components/NavBar.jsx +++ b/src/views/components/NavBar.jsx @@ -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 }