From 1e499c7758a02aa0cd1dfc94fb5f64fb3fd3c08c Mon Sep 17 00:00:00 2001 From: Kevin Date: Thu, 5 Sep 2019 21:45:02 +0200 Subject: [PATCH] Remove console.log --- store/Sidebar.js | 1 - 1 file changed, 1 deletion(-) 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 }