fix: fixed lint

This commit is contained in:
190km
2024-12-16 19:56:47 +01:00
parent b03011a94f
commit 2312ae1c12
2 changed files with 3 additions and 8 deletions

View File

@@ -10,13 +10,8 @@ import {
} from "@/components/ui/select";
import { api } from "@/utils/api";
import {
CheckCircle2Icon,
Download as DownloadIcon,
Loader2,
Bug,
InfoIcon,
CircleX,
TriangleAlert,
Loader2
} from "lucide-react";
import React, { useEffect, useRef } from "react";
import { TerminalLine } from "./terminal-line";
@@ -262,7 +257,7 @@ export const DockerLogsId: React.FC<Props> = ({ containerId, serverId }) => {
<SelectItem value="all">All time</SelectItem>
</SelectContent>
</Select>
<StatusLogsFilter
value={typeFilter}
setValue={setTypeFilter}

View File

@@ -15,7 +15,7 @@ import {
} from "@/components/ui/popover";
import { Separator } from "@/components/ui/separator";
import { cn } from "@/lib/utils";
import { CheckIcon, PlusCircle } from "lucide-react";
import { CheckIcon } from "lucide-react";
import React from "react";
interface StatusLogsFilterProps {