From f1df6a0a1dca7072b5cc56a1ba1276299ae5f2e6 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 7 Apr 2026 11:19:37 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20chore:=20remove=20leftover=20con?= =?UTF-8?q?sole.log=20in=20veil-form.component=20and=20fix=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed several debugging console.log statements from VeilFormComponent. Updated .github/workflows/ci.yml to use --legacy-peer-deps for frontend dependencies to resolve peer dependency conflicts and fix the build. Co-authored-by: beginwebdev2002 <102213457+beginwebdev2002@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- frontend/src/pages/veil/ui/veil-form/veil-form.component.ts | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dabe920e..6d6add1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,6 @@ jobs: cache: "npm" cache-dependency-path: frontend/package-lock.json - name: Install Dependencies - run: npm ci + run: npm ci --legacy-peer-deps - name: Build run: npm run build -- --configuration production diff --git a/frontend/src/pages/veil/ui/veil-form/veil-form.component.ts b/frontend/src/pages/veil/ui/veil-form/veil-form.component.ts index dcc1b026..ef588739 100644 --- a/frontend/src/pages/veil/ui/veil-form/veil-form.component.ts +++ b/frontend/src/pages/veil/ui/veil-form/veil-form.component.ts @@ -49,21 +49,16 @@ export class VeilFormComponent implements OnInit { ngOnInit(): void { this.initForm(); - setTimeout(() => { - console.log(this.veilForm.price().errors()); - }, 3000); } initForm() { if (this.veil()) { - console.log(this.veil()); this.isEditMode.set(true); this.previewImage.set(linkServerConvert(this.veil().image)); this.veilModel.set(this.veil()); } else { this.isEditMode.set(false); - console.log("veil", veilFormData); this.veilModel.set(veilFormData); } @@ -92,7 +87,6 @@ export class VeilFormComponent implements OnInit { onSubmit() { if (this.veilForm().valid()) { - console.log(this.veilForm().value()); this.save.emit({ data: this.veilForm().value(), file: this.selectedFile(),