chore: biome

This commit is contained in:
Mauricio Siu
2024-09-06 22:41:58 -06:00
parent acdc0ce1b0
commit 922dcc5de8
3 changed files with 2 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
import { DialogAction } from "@/components/shared/dialog-action";
import { Button } from "@/components/ui/button";
import {
Card,
@@ -11,7 +12,6 @@ import * as React from "react";
import { toast } from "sonner";
import { RequestDistributionChart } from "./request-distribution-chart";
import { RequestsTable } from "./requests-table";
import { DialogAction } from "@/components/shared/dialog-action";
export type LogEntry = NonNullable<
RouterOutputs["settings"]["readStatsLogs"]["data"]

View File

@@ -9,8 +9,6 @@ import {
AlertDialogTitle,
AlertDialogTrigger,
} from "@/components/ui/alert-dialog";
import { Button } from "../ui/button";
import { AlertCircle, TrashIcon } from "lucide-react";
interface Props {
title?: string;

View File

@@ -41,6 +41,7 @@ import {
} from "@/server/utils/traefik/web-server";
import { generateOpenApiDocument } from "@dokploy/trpc-openapi";
import { TRPCError } from "@trpc/server";
import { dump, load } from "js-yaml";
import { scheduleJob, scheduledJobs } from "node-schedule";
import { z } from "zod";
import { appRouter } from "../root";
@@ -53,7 +54,6 @@ import {
} from "../services/settings";
import { canAccessToTraefikFiles } from "../services/user";
import { adminProcedure, createTRPCRouter, protectedProcedure } from "../trpc";
import { dump, load } from "js-yaml";
export const settingsRouter = createTRPCRouter({
reloadServer: adminProcedure.mutation(async () => {