Skip to content

Commit

Permalink
chore: remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethnym committed Dec 3, 2024
1 parent 8c67b86 commit 984b0d7
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions web/src/templates/template-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,18 @@ import { Button } from "@/components/ui/button";
import { Skeleton } from "@/components/ui/skeleton";
import {
Table,
TableHeader,
TableRow,
TableHead,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
import { useToast } from "@/hooks/use-toast";
import { ToastAction } from "@radix-ui/react-toast";
import { Link } from "@tanstack/react-router";
import dayjs from "dayjs";
import { Pencil, Trash2 } from "lucide-react";
import React, { useEffect } from "react";
import { useTemplates, useDeleteTemplate } from "./api";
import { Link } from "@tanstack/react-router";
import { useDeleteTemplate, useTemplates } from "./api";
import type { TemplateMeta } from "./types";

const TemplateTable = React.memo(_TemplateTable, () => true);
Expand Down

0 comments on commit 984b0d7

Please sign in to comment.