From 9a76e21acb8e6633a5bd181ee11f42cf940e0879 Mon Sep 17 00:00:00 2001 From: Thiago Bronisio <86695254+ThiagoBronisio@users.noreply.github.com> Date: Sat, 14 Jan 2023 13:06:43 -0300 Subject: [PATCH] feat: adiciona links ao footer --- src/components/Footer/LinksFooter/LinksFooter.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)