diff --git a/package.json b/package.json index 5d7376c..5cac9b3 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ "react-icons": "^5.0.1", "react-router-dom": "^6.20.0", "react-script": "^2.0.5", + "react-icons": "^5.0.1", "yup": "^1.3.2" }, "lint-staged": { diff --git a/src/components/Catalog/CatalogTable.jsx b/src/components/Catalog/CatalogTable.jsx index dd42575..9922da8 100644 --- a/src/components/Catalog/CatalogTable.jsx +++ b/src/components/Catalog/CatalogTable.jsx @@ -1,9 +1,9 @@ import { Container, Badge, IconButton, Table, Thead, Tr, Th, Td, Tbody } from '@chakra-ui/react'; -import { EditIcon, DeleteIcon } from '@chakra-ui/icons'; +import { /*EditIcon,*/ DeleteIcon } from '@chakra-ui/icons'; // add 'EditIcon' to reinstate edit button. import s from './Catalog.module.css'; import PropTypes from 'prop-types'; -const CatalogTable = ({ tableData, handleEditForm, handleDeleteClick }) => { +const CatalogTable = ({ tableData, /*handleEditForm,*/ handleDeleteClick }) => { return (
{title} @@ -80,7 +80,7 @@ const CatalogTable = ({ tableData, handleEditForm, handleDeleteClick }) => { |
- |