Removed console logs & pakage updates

This commit is contained in:
Patrick Fic
2021-06-09 11:33:31 -07:00
parent 41c30fe704
commit a4b58b4bd9
4 changed files with 5420 additions and 4476 deletions

View File

@@ -54,7 +54,6 @@ export function BillFormComponent({
useEffect(() => {
if (job) form.validateFields(["is_credit_memo"]);
}, [job, form]);
console.log("🚀 ~ file: bill-form.component.jsx ~ line 57 ~ job", job);
useEffect(() => {
if (form.getFieldValue("vendorid") && vendorAutoCompleteOptions) {
@@ -196,7 +195,6 @@ export function BillFormComponent({
rules={[
({ getFieldValue }) => ({
validator(rule, value) {
console.log("VALIDATOR FIRED");
if (
(job.status === bodyshop.md_ro_statuses.default_invoiced ||
job.status === bodyshop.md_ro_statuses.default_exported ||