From bbd7bf482dd15b398b28354d9476ed7450f798db Mon Sep 17 00:00:00 2001 From: Bob Burningham Date: Mon, 13 Nov 2023 00:15:02 -0800 Subject: [PATCH] reordered imports for messages --- app/api/messages/route.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/api/messages/route.ts b/app/api/messages/route.ts index 69f6178..2017d78 100644 --- a/app/api/messages/route.ts +++ b/app/api/messages/route.ts @@ -1,8 +1,8 @@ -import { currentProfile } from "@/lib/current-profile"; -import { db } from "@/lib/db"; +import { NextResponse } from "next/server"; import { Message } from "@prisma/client"; -import { NextResponse } from "next/server"; +import { currentProfile } from "@/lib/current-profile"; +import { db } from "@/lib/db"; const MESSAGES_BATCH = 10;