Commenting out console logging.

This commit is contained in:
Brian McGonagill 2025-07-23 19:44:24 -05:00
parent 4687f27011
commit d25ef56591
31 changed files with 87 additions and 87 deletions

View file

@ -58,7 +58,7 @@ Template.myTasksTbl.events({
const makrTaskComp = async() => {
let result = await Meteor.callAsync("markTask.complete", taskId);
if (!result) {
console.log(" ERROR marking task completeL " + err);
// console.log(" ERROR marking task completeL " + err);
showSnackbar("ERROR Marking Task Complete!", "red");
} else {
showSnackbar("Successfully Marked Task Complete!", "green");
@ -67,7 +67,7 @@ Template.myTasksTbl.events({
},
'click .deleteMyTask' (event) {
event.preventDefault();
console.log("detected click");
// console.log("detected click");
Session.set("deleteId", this._id);
Session.set("method", "delete.task");
Session.set("item", this.taskName);