diff --git a/src/components/Sidebar/Button.tsx b/src/components/Sidebar/Button.tsx index 9539a5374..a6a9d6058 100644 --- a/src/components/Sidebar/Button.tsx +++ b/src/components/Sidebar/Button.tsx @@ -1,15 +1,9 @@ import React, { FC } from 'react'; import { Button, ButtonProps } from '@mui/material'; -import NavigateNextIcon from '@mui/icons-material/NavigateNext'; import { FluidContainer } from 'components/Container'; -interface IProps { - hideArrow?: boolean; - smallerArrow?: boolean; -} -const SidebarButton: FC> = ({ + +const SidebarButton: FC> = ({ children, - hideArrow, - smallerArrow, sx, ...props }) => { @@ -26,11 +20,6 @@ const SidebarButton: FC> = ({ `} {...props}> {children} - {!hideArrow && ( - - )} ); }; diff --git a/src/components/Sidebar/ExitSection.tsx b/src/components/Sidebar/ExitSection.tsx index 1c4f0c8fe..ca788cc44 100644 --- a/src/components/Sidebar/ExitSection.tsx +++ b/src/components/Sidebar/ExitSection.tsx @@ -40,13 +40,10 @@ export default function ExitSection() { return ( <> - + {constants.LOGOUT} - + {constants.DELETE_ACCOUNT} diff --git a/src/components/Sidebar/NavigationButton.tsx b/src/components/Sidebar/NavigationButton.tsx index 0a3ee8946..739fe37da 100644 --- a/src/components/Sidebar/NavigationButton.tsx +++ b/src/components/Sidebar/NavigationButton.tsx @@ -17,7 +17,6 @@ const NavigationButton: FC> = ({ }) => { return (