diff --git a/client/src/components/NavBar.jsx b/client/src/components/NavBar.jsx index ff7df70b..967d00c3 100644 --- a/client/src/components/NavBar.jsx +++ b/client/src/components/NavBar.jsx @@ -1,6 +1,5 @@ import { useMemo } from 'react'; import { NavLink, useLocation } from 'react-router-dom'; -import PropTypes from 'prop-types'; import { Tooltip, Whisper } from 'rsuite'; import { Icon } from '@iconify/react'; @@ -159,8 +158,4 @@ const NavBar = () => { ); }; -NavBar.propTypes = { - className: PropTypes.string, -}; - export default NavBar;