Skip to content

Commit 70e8182

Browse files
Merge pull request #2 from beginwebdev2002/fix-veil-form-console-logs-5073749963444319208
🧹 [code health] remove leftover console.logs in veil-form.component
2 parents b180230 + b0ca362 commit 70e8182

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

frontend/src/pages/veil/ui/veil-form/veil-form.component.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,21 +49,16 @@ export class VeilFormComponent implements OnInit {
4949

5050
ngOnInit(): void {
5151
this.initForm();
52-
setTimeout(() => {
53-
console.log(this.veilForm.price().errors());
54-
}, 3000);
5552
}
5653

5754
initForm() {
5855
if (this.veil()) {
59-
console.log(this.veil());
6056
this.isEditMode.set(true);
6157

6258
this.previewImage.set(linkServerConvert(this.veil().image));
6359
this.veilModel.set(this.veil());
6460
} else {
6561
this.isEditMode.set(false);
66-
console.log("veil", veilFormData);
6762

6863
this.veilModel.set(veilFormData);
6964
}
@@ -92,7 +87,6 @@ export class VeilFormComponent implements OnInit {
9287

9388
onSubmit() {
9489
if (this.veilForm().valid()) {
95-
console.log(this.veilForm().value());
9690
this.save.emit({
9791
data: this.veilForm().value(),
9892
file: this.selectedFile(),

0 commit comments

Comments
 (0)