From 472cb5c9edbf4540c7e5cdbf3ebd98872126ed41 Mon Sep 17 00:00:00 2001 From: Jamila Mahamed Date: Sun, 31 Mar 2024 18:22:41 +0200 Subject: [PATCH] minor changes --- src/components/SingleList.jsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/SingleList.jsx b/src/components/SingleList.jsx index 18ccdf6..8eb20bc 100644 --- a/src/components/SingleList.jsx +++ b/src/components/SingleList.jsx @@ -4,7 +4,6 @@ import { MdOutlineDeleteForever } from 'react-icons/md'; import { deleteList } from '../api'; import { Button } from '@mui/material'; - export function SingleList({ name, path, setListPath, listPath, email }) { // Function to handle selecting a list const handleClick = () => { @@ -32,6 +31,5 @@ export function SingleList({ name, path, setListPath, listPath, email }) { onClick={handleDelete} /> - } -) + ); }