style: standardize import ordering, type imports, and formatting in source files
Sort imports alphabetically, convert value imports to type-only where appropriate, normalize indentation to tabs, and sort exports alphabetically across UI components, pages, and lib modules.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { headers } from "next/headers";
|
||||
import { NextResponse } from "next/server";
|
||||
import { auth } from "@/auth";
|
||||
import { headers } from "next/headers";
|
||||
import { openRouterClient } from "@/lib/openrouter-client";
|
||||
|
||||
export async function POST(request: Request) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { auth } from "@/auth";
|
||||
import { toNextJsHandler } from "better-auth/next-js";
|
||||
import { auth } from "@/auth";
|
||||
|
||||
export const { GET, POST } = toNextJsHandler(auth);
|
||||
|
||||
Reference in New Issue
Block a user