refactor: remove unnecessary console log from responsiblePerson function
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 6s

This commit is contained in:
puriphatt 2025-04-24 15:17:46 +07:00
parent 9f6d972c91
commit aac82ce477

View file

@ -70,7 +70,6 @@ function responsiblePerson(quotation: QuotationFull) {
tempGroup.push(rhs);
}
});
console.log({ user: tempPerson, group: tempGroup });
return { user: tempPerson, group: tempGroup };
}
}