Remove console.log

This commit is contained in:
Kevin
2019-09-05 21:45:02 +02:00
parent f02cf326ff
commit 1e499c7758

View File

@@ -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
}