diff --git a/src/components/Notification/index.jsx b/src/components/Notification/index.jsx index 919ce48..e478d11 100644 --- a/src/components/Notification/index.jsx +++ b/src/components/Notification/index.jsx @@ -35,7 +35,6 @@ export default function Notification() { const indexOfLastItem = Number(indexOfFirstItem) + Number(process.env.REACT_APP_ITEM_PER_PAGE); const currentNotifications = notificationData?.slice(indexOfFirstItem, indexOfLastItem); - console.log('TESTING', currentNotifications) const filterHandler = (value) => { setValue(value); switch(value){ diff --git a/src/components/Partials/Header.jsx b/src/components/Partials/Header.jsx index c063bda..cbb8156 100644 --- a/src/components/Partials/Header.jsx +++ b/src/components/Partials/Header.jsx @@ -315,16 +315,17 @@ export default function Header({ logoutModalHandler, sidebarHandler }) {