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

@ -26,12 +26,12 @@ Template.listsTbl.events({
if (listId == "addList") {
// opens the modal and allows you to add a new List
} else {
console.log("listId is: " + listId);
// console.log("listId is: " + listId);
Session.set("listId", listId);
const addUserLast = async() => {
let result = await Meteor.callAsync('add.userLast', "List", listId);
if (!result) {
console.log(" ERROR setting user last list id in db: " + err);
// console.log(" ERROR setting user last list id in db: " + err);
} else {
setTimeout(function() {
FlowRouter.go('/listitems');
@ -53,7 +53,7 @@ Template.listsTbl.events({
const markComp = async() => {
let result = await Meteor.callAsync("mark.complete", listId);
if (!result) {
console.log(" ERROR marking list complete!");
// console.log(" ERROR marking list complete!");
showSnackbar("ERROR! List Not Makred Complete!", "red");
} else {
// console.log(" SUCCESS marking list complete.");