Skip to content
Snippets Groups Projects
Commit ba5af8a1 authored by abdu's avatar abdu
Browse files

remove console logs that were used for debugging purposes

parent e2184b28
No related branches found
No related tags found
No related merge requests found
...@@ -39,9 +39,7 @@ export default { ...@@ -39,9 +39,7 @@ export default {
}, },
methods: { methods: {
setToDoIdForDeleteModal(todoId){ setToDoIdForDeleteModal(todoId){
console.log(todoId)
this.todoIdForDeleteModal = todoId this.todoIdForDeleteModal = todoId
console.log(this.todoIdForDeleteModal)
}, },
async validateSession(){ async validateSession(){
if(this.$route.name === 'main') { if(this.$route.name === 'main') {
...@@ -75,8 +73,6 @@ export default { ...@@ -75,8 +73,6 @@ export default {
const items = await response.json() const items = await response.json()
this.items = items.filter(item => item.completed === false) this.items = items.filter(item => item.completed === false)
this.completedItems = items.filter(item => item.completed === true) this.completedItems = items.filter(item => item.completed === true)
console.log(this.items)
console.log(this.completedItems)
} }
}, },
async addTodo(){ async addTodo(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment