Skip to content

Commit

Permalink
Removed console log
Browse files Browse the repository at this point in the history
  • Loading branch information
nwittwer committed Oct 27, 2018
1 parent 15823a7 commit de25692
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions vue/src/store/ArtboardsStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ export const artboardsLocalStorage = {
},
updateSize: function (artboard) {
let artboards = JSON.parse(localStorage.getItem(LOCAL_STORAGE_KEY) || '[]');

// eslint-disable-next-line
console.log(artboard);


for (var i = 0; i < artboards.length; i++) {
if (artboard.id === artboards[i].id) { //look for match by id
artboards[i].height = artboard.height; // updated object
Expand Down

0 comments on commit de25692

Please sign in to comment.