Update apps/web/pages/[user]/calendar-cache/[month].tsx

Co-authored-by: Omar López <zomars@me.com>
This commit is contained in:
Efraín Rochín 2023-02-02 20:29:20 -07:00 committed by GitHub
parent 1f85daec5f
commit 76eaf898d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,8 +10,6 @@ import { getCachedResults } from "@calcom/core";
import dayjs from "@calcom/dayjs";
import prisma from "@calcom/prisma";
type UnwrapPromise<T> = T extends Promise<infer U> ? U : T;
const CalendarCache = () => <div />;
const paramsSchema = z.object({ user: z.string(), month: z.string() });