diff --git a/src/components/Footer/LinksFooter/LinksFooter.tsx b/src/components/Footer/LinksFooter/LinksFooter.tsx index e6601d2..569d3d7 100644 --- a/src/components/Footer/LinksFooter/LinksFooter.tsx +++ b/src/components/Footer/LinksFooter/LinksFooter.tsx @@ -16,25 +16,25 @@ const LinksFooter = () => { const [openFaleConosco, setOpenFaleConosco] = useState(false); const handleListInstitucional = () => { - if (window.innerWidth < 1024) { + if (window.innerWidth < 1025) { setOpenInstitucional(!openInstitucional); } }; const handleListDuvidas = () => { - if (window.innerWidth < 1024) { + if (window.innerWidth < 1025) { setOpenDuvidas(!openDuvidas) } } const handleFaleConosco = () => { - if (window.innerWidth < 1024) { + if (window.innerWidth < 1025) { setOpenFaleConosco(!openFaleConosco) } } const handleLoadResize = () => { - if (window.innerWidth > 1024) { + if (window.innerWidth > 1025) { setOpenInstitucional(true) setOpenDuvidas(true) setOpenFaleConosco(true)