Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix imports
  • Loading branch information
sean-brydon committed Aug 25, 2022
commit 368e90b69166b324e14f7ff81fd4aca005c4b117
4 changes: 3 additions & 1 deletion apps/web/pages/v2/event-types/index.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import { UserPlan } from "@prisma/client";
import { getSession } from "next-auth/react";
import { Trans } from "next-i18next";
import Head from "next/head";
import Link from "next/link";
import { useRouter } from "next/router";
import { InferGetServerSidePropsType } from "next/types";
import { GetServerSidePropsContext, InferGetServerSidePropsType } from "next/types";
import React, { Fragment, useEffect, useState } from "react";

import { CAL_URL, WEBAPP_URL } from "@calcom/lib/constants";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { prisma } from "@calcom/prisma";
import { inferQueryOutput, trpc } from "@calcom/trpc/react";
import { Icon } from "@calcom/ui";
import { Alert } from "@calcom/ui/Alert";
Expand Down