Skip to content

Commit 083a7be

Browse files
author
Alan Smith
committed
Remove console.logs
1 parent 9f49d28 commit 083a7be

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/store.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ export default new Vuex.Store({
2424
},
2525

2626
UPDATE_EVENT(state, event) {
27-
console.log(event);
2827
const eventIndex = state.events.findIndex(e => e.eventId === event.eventId);
29-
console.log(eventIndex);
28+
3029
if (eventIndex > -1) {
3130
state.events.splice(eventIndex, 1, event);
3231
}

0 commit comments

Comments
 (0)