Skip to content

Commit

Permalink
fixed codacy static code analysis issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Vimalnegi03 committed Dec 15, 2024
1 parent d5e1c8a commit 4e5716c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@
transform: scale3d(1, 1, 1);
}
}

.ExpandedIcon {
color: #717971;
margin-left: auto;
Expand Down
3 changes: 2 additions & 1 deletion src/components/UI/Layout/Navigation/SideMenus/SideMenus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import styles from './SideMenus.module.css';
import { useTranslation } from 'react-i18next';
import { Menu } from 'config/menu';
import { ArrowDropDown } from '@mui/icons-material';

export interface SideMenusProps {
opened: boolean;
}
Expand Down Expand Up @@ -185,7 +186,6 @@ const SideMenus = ({ opened }: SideMenusProps) => {
}}
/>
);

let listItemButton = (
<ListItemButton
disableRipple
Expand Down Expand Up @@ -218,6 +218,7 @@ const SideMenus = ({ opened }: SideMenusProps) => {
}
primary={t(menu.title as any)}
/>

{dropdownArrow}
</>
)}
Expand Down

0 comments on commit 4e5716c

Please sign in to comment.