diff --git a/store/Sidebar.js b/store/Sidebar.js index 374b29f..8627c67 100644 --- a/store/Sidebar.js +++ b/store/Sidebar.js @@ -8,7 +8,6 @@ export const getters = { export const mutations = { toggleCardsShown(state) { - console.log(state.cardsShown) if (process.browser) localStorage.setItem('cardsShown', !state.cardsShown) state.cardsShown = !state.cardsShown }