Build fixes

pull/2743/head^2
zomars 2022-05-12 13:54:46 -06:00
parent b69c1e46d1
commit bf1f9b6a32
1 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,6 @@
import { ChevronLeftIcon } from "@heroicons/react/solid"; import { ChevronLeftIcon } from "@heroicons/react/solid";
import { InferGetStaticPropsType, GetStaticPropsContext } from "next"; import { AppCategories } from "@prisma/client";
import { GetStaticPropsContext, InferGetStaticPropsType } from "next";
import Link from "next/link"; import Link from "next/link";
import { useRouter } from "next/router"; import { useRouter } from "next/router";
@ -10,8 +11,6 @@ import prisma from "@calcom/prisma";
import Shell from "@components/Shell"; import Shell from "@components/Shell";
import AppCard from "@components/apps/AppCard"; import AppCard from "@components/apps/AppCard";
import { AppCategories } from ".prisma/client";
export default function Apps({ apps: apps }: InferGetStaticPropsType<typeof getStaticProps>) { export default function Apps({ apps: apps }: InferGetStaticPropsType<typeof getStaticProps>) {
const { t } = useLocale(); const { t } = useLocale();
const router = useRouter(); const router = useRouter();