From d94858241b835d705740c1b0716d1eff17711cb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Sun, 1 Aug 2021 19:22:52 +0200 Subject: [PATCH] refactor: set `sidebarShow` to `true` --- src/store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store.js b/src/store.js index 7b03807..ab44636 100644 --- a/src/store.js +++ b/src/store.js @@ -1,7 +1,7 @@ import { createStore } from 'redux' const initialState = { - sidebarShow: false, + sidebarShow: true, } const changeState = (state = initialState, { type, ...rest }) => {