hide chatboat icon ,mobile responsive drawer

This commit is contained in:
Mayur Shinde
2026-06-15 11:51:59 +05:30
parent 11d5662a92
commit c8865e7d4c
2 changed files with 9 additions and 4 deletions
+3 -1
View File
@@ -384,7 +384,9 @@ const Layout = () => {
</PageTransition>
</main>
<Chatbot />
{/* Hide the floating chat on full-page flows that have their own bottom CTAs
(estimate wizard, ad preview form, Ad Engine) so it doesn't overlap their buttons. */}
{!(location.pathname === '/estimate' || location.pathname === '/marketing' || location.pathname.startsWith('/ads/')) && <Chatbot />}
</div>
);
};