Redux-devtools: No more visibleOnLoad in v3?

Created on 20 Oct 2015  路  2Comments  路  Source: reduxjs/redux-devtools

I'm using [email protected], and I see that the visibleOnLoad prop has gone away.

Is there a new way to have it default to hidden?

Most helpful comment

Nevermind. Figured it out. Using DockMonitor:

<DockMonitor
    toggleVisibilityKey="H"
    changePositionKey="Q"
    defaultIsVisible={false}> // <--------------- Bingo!
  <LogMonitor/>
</DockMonitor>

All 2 comments

Nevermind. Figured it out. Using DockMonitor:

<DockMonitor
    toggleVisibilityKey="H"
    changePositionKey="Q"
    defaultIsVisible={false}> // <--------------- Bingo!
  <LogMonitor/>
</DockMonitor>

That's it!

Was this page helpful?
0 / 5 - 0 ratings