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

@ -30,9 +30,9 @@ Template.addMenuModal.events({
const addMenu = async() => {
let result = await Meteor.callAsync("add.menu", menuName);
if (!result) {
console.log(" ERROR adding menu: " + err);
// console.log(" ERROR adding menu: " + err);
} else {
console.log(" SUCCESS adding menu.");
// console.log(" SUCCESS adding menu.");
$("#menuNameInp").val("");
}
}