Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbedouret committed Apr 3, 2020
1 parent 0fd32f7 commit d3ca45d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/UI/FullScreenDialog/FullScreenDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function FullScreenDialog(props) {
} = props;

const theme = useTheme();
const dark = theme.palette.type == 'dark' ? true : false;
const dark = theme.palette.type === 'dark' ? true : false;

return (
<Dialog
Expand Down

0 comments on commit d3ca45d

Please sign in to comment.