Skip to content

Commit

Permalink
chore: remove support feature flag (#4138)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Dec 7, 2023
1 parent 0b71d3c commit 8ed6045
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions apps/web/src/components/Support/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down Expand Up @@ -56,10 +54,6 @@ const Support: NextPage = () => {
Leafwatch.track(PAGEVIEW, { page: 'support' });
});

if (!isFeatureEnabled('support')) {
return <Custom404 />;
}

const createTicket = async (
email: string,
type: string,
Expand Down

1 comment on commit 8ed6045

@vercel
Copy link

@vercel vercel bot commented on 8ed6045 Dec 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./

web-git-main-heyxyz.vercel.app
web-heyxyz.vercel.app
heyxyz.vercel.app
hey.xyz

Please sign in to comment.