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?
Nevermind. Figured it out. Using DockMonitor:
<DockMonitor
toggleVisibilityKey="H"
changePositionKey="Q"
defaultIsVisible={false}> // <--------------- Bingo!
<LogMonitor/>
</DockMonitor>
That's it!
Most helpful comment
Nevermind. Figured it out. Using
DockMonitor: