File tree 2 files changed +3
-2
lines changed 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,8 @@ class App extends React.Component {
34
34
render ( ) {
35
35
return (
36
36
< div className = "app" >
37
- { this . state . isMounted && ! window . devToolsExtension && getConfig ( 'NODE_ENV' ) === 'development' && < DevTools /> }
37
+ { /* FIXME: Remove false */ }
38
+ { false && this . state . isMounted && ! window . devToolsExtension && getConfig ( 'NODE_ENV' ) === 'development' && < DevTools /> }
38
39
{ this . props . children }
39
40
</ div >
40
41
) ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export const useModalBehavior = (hideOverlay) => {
21
21
22
22
// Return values
23
23
const setRef = ( r ) => { ref . current = r ; } ;
24
- const [ visible , setVisible ] = useState ( true ) ;
24
+ const [ visible , setVisible ] = useState ( false ) ;
25
25
const trigger = ( ) => setVisible ( ! visible ) ;
26
26
27
27
const hide = ( ) => setVisible ( false ) ;
You can’t perform that action at this time.
0 commit comments