From 772e56b9eb68e24ca55abef19322e50b68baa22a Mon Sep 17 00:00:00 2001 From: Badal Khatri Date: Sat, 30 Dec 2023 08:32:55 +0530 Subject: [PATCH] fix: Build issue --- apps/web/lib/app/authenticator.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/web/lib/app/authenticator.tsx b/apps/web/lib/app/authenticator.tsx index 64a48e885..092bfc7c9 100644 --- a/apps/web/lib/app/authenticator.tsx +++ b/apps/web/lib/app/authenticator.tsx @@ -3,7 +3,6 @@ import { useOrganizationTeams } from '@app/hooks'; import { useQuery } from '@app/hooks/useQuery'; import { getAuthenticatedUserDataAPI } from '@app/services/client/api'; import { userState } from '@app/stores'; -import TeamPageSkeleton from '@components/shared/skeleton/TeamPageSkeleton'; import { CreateTeamModal } from 'lib/features'; import { JoinTeamModal } from 'lib/features/team/join-team-modal'; import { GetServerSidePropsContext, NextPage, PreviewData } from 'next'; @@ -18,8 +17,6 @@ type Params = { }; export function withAuthentication(Component: NextPage, params: Params) { - const { showPageSkeleton = true } = params; - const AppComponent = (props: any) => { // const { trans } = useTranslation(); const [user, setUser] = useRecoilState(userState);