diff --git a/src/renderer/component/theme/view.jsx b/src/renderer/component/theme/view.jsx index e998d6d20..bac5410d8 100644 --- a/src/renderer/component/theme/view.jsx +++ b/src/renderer/component/theme/view.jsx @@ -3,15 +3,11 @@ import React from 'react'; const Theme = props => { const { themePath } = props; - // Force light mode while until dark mode is ready - // This is so we don't have to change users settings for them - return null; + if (!themePath) { + return null; + } - // if (!themePath) { - // return null; - // } - // - // return ; + return ; }; export default Theme;