`yarn lint --fix` (#812)

pull/811/head^2
Alex Johansson 2021-09-28 20:12:48 +01:00 committed by GitHub
parent 3b71c86b1e
commit e684824c79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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";