From c1420bd6d8eaae08e8280c9d443e75e3fcc70a49 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Mon, 26 Aug 2024 15:22:51 -0600 Subject: [PATCH] chore: apply biome --- apps/dokploy/server/api/routers/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/server/api/routers/auth.ts b/apps/dokploy/server/api/routers/auth.ts index 7b73445e2..f3b2362fd 100644 --- a/apps/dokploy/server/api/routers/auth.ts +++ b/apps/dokploy/server/api/routers/auth.ts @@ -12,6 +12,7 @@ import { } from "@/server/db/schema"; import { TRPCError } from "@trpc/server"; import * as bcrypt from "bcrypt"; +import { db } from "../../db"; import { createAdmin, createUser, @@ -27,7 +28,6 @@ import { protectedProcedure, publicProcedure, } from "../trpc"; -import { db } from "../../db"; export const authRouter = createTRPCRouter({ createAdmin: publicProcedure