Skip to content

Commit 1dbf734

Browse files
committed
fix(Button): conflicts resolved
2 parents 5afb26c + a34894a commit 1dbf734

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Button/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Theme as MuiTheme } from '@material-ui/core';
44
import { fade } from '@material-ui/core/styles/colorManipulator';
55

66
export const styles = ({ color, disabled }: ButtonProps, muiTheme: MuiTheme, theme: Theme) => {
7-
if (!color || (color === 'default' && !disabled)) {
7+
if (!color || color === 'default' && !disabled) {
88
return;
99
}
1010

0 commit comments

Comments
 (0)