Skip to content

Commit

Permalink
fix: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikmv committed Aug 30, 2024
1 parent 27be0a4 commit d933f78
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ const ListViewMenuPlain = ({ customMenuContents = [], classes }: Props) => {
</>
);
}
console.log('content', content);

return (
<MenuItem
Expand Down Expand Up @@ -107,4 +106,4 @@ const ListViewMenuPlain = ({ customMenuContents = [], classes }: Props) => {
};

export const ListViewMenu: ComponentType<$Diff<Props, CssClasses>> =
memo < $Diff < Props, CssClasses>> (withStyles(getStyles)(ListViewMenuPlain));
memo < $Diff<Props, CssClasses>>(withStyles(getStyles)(ListViewMenuPlain));

0 comments on commit d933f78

Please sign in to comment.