chore: remove unused import

This commit is contained in:
2024-12-03 21:58:01 +00:00
parent 8c67b86721
commit 984b0d728a

View File

@@ -2,19 +2,18 @@ import { Button } from "@/components/ui/button";
import { Skeleton } from "@/components/ui/skeleton"; import { Skeleton } from "@/components/ui/skeleton";
import { import {
Table, Table,
TableHeader,
TableRow,
TableHead,
TableBody, TableBody,
TableCell, TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table"; } from "@/components/ui/table";
import { useToast } from "@/hooks/use-toast"; import { useToast } from "@/hooks/use-toast";
import { ToastAction } from "@radix-ui/react-toast"; import { Link } from "@tanstack/react-router";
import dayjs from "dayjs"; import dayjs from "dayjs";
import { Pencil, Trash2 } from "lucide-react"; import { Pencil, Trash2 } from "lucide-react";
import React, { useEffect } from "react"; import React, { useEffect } from "react";
import { useTemplates, useDeleteTemplate } from "./api"; import { useDeleteTemplate, useTemplates } from "./api";
import { Link } from "@tanstack/react-router";
import type { TemplateMeta } from "./types"; import type { TemplateMeta } from "./types";
const TemplateTable = React.memo(_TemplateTable, () => true); const TemplateTable = React.memo(_TemplateTable, () => true);