refactor: remove unused auth service and clean up server-side code

This commit is contained in:
Mauricio Siu
2025-02-22 18:03:12 -06:00
parent 81a881b07e
commit 1a415b96c9
201 changed files with 434 additions and 1035 deletions

View File

@@ -9,7 +9,6 @@ import {
AlertDialogTitle,
AlertDialogTrigger,
} from "@/components/ui/alert-dialog";
import { Button } from "../ui/button";
interface Props {
title?: string | React.ReactNode;

View File

@@ -1,6 +1,3 @@
import { DialogAction } from "@/components/shared/dialog-action";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import {
Sheet,
SheetContent,
@@ -8,10 +5,8 @@ import {
SheetHeader,
SheetTitle,
} from "@/components/ui/sheet";
import { api } from "@/utils/api";
import { Ban, CheckCircle2, Loader2, RefreshCcw, Terminal } from "lucide-react";
import React, { useState, useEffect, useRef } from "react";
import { toast } from "sonner";
import { Loader2 } from "lucide-react";
import { useEffect, useRef, useState } from "react";
import { TerminalLine } from "../dashboard/docker/logs/terminal-line";
import type { LogLine } from "../dashboard/docker/logs/utils";

View File

@@ -1,5 +1,3 @@
import React from "react";
interface Props {
className?: string;
}