diff --git a/apps/web/src/components/Support/index.tsx b/apps/web/src/components/Support/index.tsx index 7ea1fa99fbe0..94914bdd018f 100644 --- a/apps/web/src/components/Support/index.tsx +++ b/apps/web/src/components/Support/index.tsx @@ -20,12 +20,10 @@ import { TextArea, useZodForm } from '@hey/ui'; -import isFeatureEnabled from '@lib/isFeatureEnabled'; import { Leafwatch } from '@lib/leafwatch'; import axios from 'axios'; import { useState } from 'react'; import { toast } from 'react-hot-toast'; -import Custom404 from 'src/pages/404'; import { useEffectOnce } from 'usehooks-ts'; import { object, string } from 'zod'; @@ -56,10 +54,6 @@ const Support: NextPage = () => { Leafwatch.track(PAGEVIEW, { page: 'support' }); }); - if (!isFeatureEnabled('support')) { - return ; - } - const createTicket = async ( email: string, type: string,