We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 847648f commit f4d958fCopy full SHA for f4d958f
src/index.js
@@ -8,7 +8,8 @@ const types = {
8
exports.reduceUI = (state, action) => {
9
switch (action.type) {
10
case types.TOGGLE:
11
- const hyperdocs = state.hyperdocs === undefined
+ const hyperdocs = state.hyperdocs === undefined ||
12
+ state.hyperdocs.show === undefined
13
? { show: true }
14
: !state.hyperdocs.show
15
return state.set('hyperdocs', {
0 commit comments