Commit 5e622cc6 authored by Alish's avatar Alish
Browse files

fix: send correct order id on Payment with Stage

parent d38943d5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -89,13 +89,13 @@ export class PaymentComponent {

					try {
						let order = await this.orderRouter.payWithStripe(
							this.store.userId,
							this.store.orderId,
							cardId
						);
						console.log('Payment Done!');
						try {
							order = await this.orderRouter.confirm(
								this.store.userId
								this.store.orderId
							);
							console.log('Order Confirmed!');
						} catch (err) {