The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix weird overflow behavior

Luna 32e1e955 277572e3

+2 -2
+2 -2
components/modal.tsx
··· 61 61 if (isOpen) { 62 62 html.style.overflow = document.body.style.overflow = "hidden"; 63 63 } else { 64 - html.style.overflow = document.body.style.overflow = "auto"; 64 + html.style.overflow = document.body.style.overflow = ""; 65 65 } 66 66 67 67 return () => { 68 - html.style.overflow = document.body.style.overflow = "auto"; 68 + html.style.overflow = document.body.style.overflow = ""; 69 69 }; 70 70 }, [isOpen]); 71 71