From 49882e4201ae997caf665aa7455605fdf8fba58a Mon Sep 17 00:00:00 2001 From: igorrCarvalho Date: Mon, 3 Jun 2024 19:34:43 -0300 Subject: [PATCH] Remove unnused imports --- src/frontend/src/components/tableComponent/index.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/frontend/src/components/tableComponent/index.tsx b/src/frontend/src/components/tableComponent/index.tsx index 7d99ef457..1a9c7a44d 100644 --- a/src/frontend/src/components/tableComponent/index.tsx +++ b/src/frontend/src/components/tableComponent/index.tsx @@ -1,7 +1,7 @@ import "ag-grid-community/styles/ag-grid.css"; // Mandatory CSS required by the grid import "ag-grid-community/styles/ag-theme-quartz.css"; // Optional Theme applied to the grid import { AgGridReact, AgGridReactProps } from "ag-grid-react"; -import { ElementRef, forwardRef, useEffect, useRef, useState } from "react"; +import { ElementRef, forwardRef, useRef } from "react"; import { DEFAULT_TABLE_ALERT_MSG, DEFAULT_TABLE_ALERT_TITLE, @@ -11,11 +11,7 @@ import "../../style/ag-theme-shadcn.css"; // Custom CSS applied to the grid import { cn, toTitleCase } from "../../utils/utils"; import ForwardedIconComponent from "../genericIconComponent"; import { Alert, AlertDescription, AlertTitle } from "../ui/alert"; -import { Select, SelectContent, SelectTrigger } from "../ui/select"; -import { SelectItem } from "@radix-ui/react-select"; -import { Button } from "../ui/button"; import { Toggle } from "../ui/toggle"; -import TableToolbar from "./components/tableToolbar.tsx"; import ShadTooltip from "../shadTooltipComponent"; import resetGrid from "./utils/reset-grid-columns";