Fix import sort order

This commit is contained in:
Luke Vella 2024-10-31 22:38:13 +00:00
parent 7465550c5d
commit 5fc5213af8
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C
4 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,8 @@
import { prisma } from "@rallly/database";
import { GetServerSideProps } from "next";
import type { DisableNotificationsPayload } from "@/trpc/types";
import { getServerSession } from "@/auth";
import type { DisableNotificationsPayload } from "@/trpc/types";
import { decryptToken } from "@/utils/session";
const Page = () => {

View file

@ -3,8 +3,8 @@ import { prisma } from "@rallly/database";
import { NextApiRequest, NextApiResponse } from "next";
import { z } from "zod";
import { absoluteUrl } from "@/utils/absolute-url";
import { getServerSession } from "@/auth";
import { absoluteUrl } from "@/utils/absolute-url";
export const config = {
edge: true,

View file

@ -3,8 +3,8 @@ import { prisma } from "@rallly/database";
import { NextApiRequest, NextApiResponse } from "next";
import { z } from "zod";
import { absoluteUrl } from "@/utils/absolute-url";
import { getServerSession } from "@/auth";
import { absoluteUrl } from "@/utils/absolute-url";
const inputSchema = z.object({
session_id: z.string().optional(),

View file

@ -3,8 +3,8 @@ import { TRPCError } from "@trpc/server";
import { createNextApiHandler } from "@trpc/server/adapters/next";
import { posthogApiHandler } from "@/app/posthog";
import { AppRouter, appRouter } from "@/trpc/routers";
import { getServerSession } from "@/auth";
import { AppRouter, appRouter } from "@/trpc/routers";
import { getEmailClient } from "@/utils/emails";
import { composeApiHandlers } from "@/utils/next";