From d3ca45db67e265094b7396977878cb33e793c4fb Mon Sep 17 00:00:00 2001 From: martin bedouret Date: Fri, 3 Apr 2020 12:24:30 -0300 Subject: [PATCH] fix --- src/components/UI/FullScreenDialog/FullScreenDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/UI/FullScreenDialog/FullScreenDialog.js b/src/components/UI/FullScreenDialog/FullScreenDialog.js index 2b00bc80d..3812c474a 100644 --- a/src/components/UI/FullScreenDialog/FullScreenDialog.js +++ b/src/components/UI/FullScreenDialog/FullScreenDialog.js @@ -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 (