From 1afbe1acdd0ac62603de9e356fa545c4d03d4d22 Mon Sep 17 00:00:00 2001 From: Manan Gandhi Date: Mon, 18 Nov 2024 14:39:06 +0530 Subject: [PATCH] [frontend] Remove unused imports --- frontend/src/components/custom/Editorials.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/custom/Editorials.jsx b/frontend/src/components/custom/Editorials.jsx index 9559cf0..ba3c9ec 100644 --- a/frontend/src/components/custom/Editorials.jsx +++ b/frontend/src/components/custom/Editorials.jsx @@ -1,4 +1,4 @@ -import React, { useEffect, useState } from "react"; +import React from "react"; import { ScrollArea } from "../ui/scroll-area"; import { Table, @@ -8,7 +8,7 @@ import { TableHeader, TableRow, } from "../ui/table"; -import { ArrowLeft, DeleteIcon, Edit } from "lucide-react"; +import { ArrowLeft, DeleteIcon } from "lucide-react"; import Markdown from "react-markdown"; import { Button } from "../ui/button";