From b240465228dd047bb0b73b059e95a39631631c27 Mon Sep 17 00:00:00 2001 From: grosdamir <126281062+damirgros@users.noreply.github.com> Date: Mon, 19 Aug 2024 11:37:48 +0200 Subject: [PATCH] chore: remove nav proptype (#670) --- client/src/components/NavBar.jsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/client/src/components/NavBar.jsx b/client/src/components/NavBar.jsx index e9c1cb29..e277090f 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'; @@ -158,8 +157,4 @@ const NavBar = () => { ); }; -NavBar.propTypes = { - className: PropTypes.string, -}; - export default NavBar;