fix: banner default height

This commit is contained in:
Junior Garcia 2025-08-05 11:59:45 -03:00
parent ab48c6415a
commit a8b1c8527e

View File

@ -19,7 +19,7 @@ export const RandomBanner = () => {
}, []); }, []);
if (showChatBanner === null) { if (showChatBanner === null) {
return <div className="h-[47px] sm:h-[46px] border-b border-divider" />; return <div className="h-[47px] border-b border-divider" />;
} }
return showChatBanner ? <HeroUIChatBanner /> : <ProBanner />; return showChatBanner ? <HeroUIChatBanner /> : <ProBanner />;