Skip to content

Commit

Permalink
Remove unused class
Browse files Browse the repository at this point in the history
  • Loading branch information
sebelga committed Nov 27, 2024
1 parent 8eceea7 commit 9e74021
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,7 @@ const SolutionSideNavPanelItem: React.FC<SolutionSideNavPanelItemProps> = React.
function SolutionSideNavPanelItem({ item, onClose }) {
const { tracker } = useTelemetryContext();
const { euiTheme } = useEuiTheme();
const panelLinkClassNames = classNames(
'solutionSideNavPanelLink',
SolutionSideNavPanelItemStyles(euiTheme)
);
const panelLinkClassNames = classNames(SolutionSideNavPanelItemStyles(euiTheme));
const { id, href, onClick, iconType, openInNewTab } = item;
const onClickHandler = useCallback<React.MouseEventHandler>(
(ev) => {
Expand Down

0 comments on commit 9e74021

Please sign in to comment.