diff --git a/src/app/checkout/checkout.component.ts b/src/app/checkout/checkout.component.ts index 6a24355..5298fc0 100644 --- a/src/app/checkout/checkout.component.ts +++ b/src/app/checkout/checkout.component.ts @@ -24,6 +24,7 @@ export class CheckoutComponent implements OnInit{ private sanitizer: DomSanitizer, @Inject(MAT_DIALOG_DATA) public data: { totalZec: number, addr: string, orderId: string} ) { + console.log("Entra a Constructor") this.address = data.addr; this.total = data.totalZec; this.orderId = data.orderId; @@ -42,7 +43,7 @@ export class CheckoutComponent implements OnInit{ logoHeight: 60, correctLevel: QRCode.CorrectLevel.H }); -// console.log(">>> " + qrcode); + console.log("mgOnInit - pasa"); }