File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 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 {
3434 render ( ) {
3535 return (
3636 < 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 /> }
3839 { this . props . children }
3940 </ div >
4041 ) ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export const useModalBehavior = (hideOverlay) => {
2121
2222 // Return values
2323 const setRef = ( r ) => { ref . current = r ; } ;
24- const [ visible , setVisible ] = useState ( true ) ;
24+ const [ visible , setVisible ] = useState ( false ) ;
2525 const trigger = ( ) => setVisible ( ! visible ) ;
2626
2727 const hide = ( ) => setVisible ( false ) ;
You can’t perform that action at this time.
0 commit comments