diff --git a/packages/web/pages/community/forum.tsx b/packages/web/pages/community/forum.tsx deleted file mode 100644 index b79411bf..00000000 --- a/packages/web/pages/community/forum.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import { PageContainer } from 'components/Container'; -import { HeadComponent } from 'components/Seo'; -import React, { useEffect, useState } from 'react'; - -import { descriptions } from '../../utils/menuLinks'; - -const ForumPage: React.FC = () => { - // need to ensure that the menu height is calculated on client - const [isComponentMounted, setIsComponentMounted] = useState(false); - useEffect(() => setIsComponentMounted(true), []); - if (!isComponentMounted) { - return null; - } - - const megamenuHeight = - document.getElementById('MegaMenu')?.offsetHeight || 81; // ugly solution, but i couldn't find a better way to set the right height of the iframe - - return ( - - -