Skip to content

Commit

Permalink
yarn lint --fix (calcom#812)
Browse files Browse the repository at this point in the history
  • Loading branch information
KATT authored Sep 28, 2021
1 parent 3b71c86 commit e684824
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pages/api/cancel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import async from "async";
import { refund } from "@ee/lib/stripe/server";

import { asStringOrNull } from "@lib/asStringOrNull";
import { getSession } from "@lib/auth";
import { CalendarEvent, deleteEvent } from "@lib/calendarClient";
import prisma from "@lib/prisma";
import { deleteMeeting } from "@lib/videoClient";
import { getSession } from "@lib/auth";

export default async function handler(req, res) {
// just bail if it not a DELETE
Expand Down
2 changes: 1 addition & 1 deletion pages/cancel/[uid].tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { CalendarIcon, XIcon } from "@heroicons/react/solid";
import dayjs from "dayjs";
import utc from "dayjs/plugin/utc";
import { getSession } from "next-auth/client";
import { useRouter } from "next/router";
import { useState } from "react";

import prisma from "@lib/prisma";
import { collectPageParameters, telemetryEventTypes, useTelemetry } from "@lib/telemetry";
import { getSession } from "next-auth/client";

import { HeadSeo } from "@components/seo/head-seo";
import { Button } from "@components/ui/Button";
Expand Down

0 comments on commit e684824

Please sign in to comment.