From 27735ead12feeef0cfb0d2f5a3eb24c1efb03bef Mon Sep 17 00:00:00 2001 From: blam Date: Thu, 7 Oct 2021 13:28:36 +0200 Subject: [PATCH] chore: remove the comment about material bug Signed-off-by: blam --- packages/core-components/src/components/Button/Button.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/core-components/src/components/Button/Button.tsx b/packages/core-components/src/components/Button/Button.tsx index cc30aeeb47..f2fc9f93f9 100644 --- a/packages/core-components/src/components/Button/Button.tsx +++ b/packages/core-components/src/components/Button/Button.tsx @@ -46,11 +46,6 @@ declare function ButtonType(props: ButtonProps): JSX.Element; const LinkWrapper = (props: LinkProps) => ; const ActualButton = React.forwardRef((props, ref) => ( - /** - This temporarily fixes a bug in material-ui where the color of the Link - overrides the color of the button - https://github.com/mui-org/material-ui/issues/28852 - */ )) as { (props: ButtonProps): JSX.Element };