nagasurendra commited on
Commit
431b7ef
·
verified ·
1 Parent(s): f844bb0

Update templates/cart.html

Browse files
Files changed (1) hide show
  1. templates/cart.html +1 -1
templates/cart.html CHANGED
@@ -617,7 +617,7 @@
617
  selectedCoupon = null; // Treat it as no coupon selected
618
  }
619
  // Send the selected coupon to the backend for processing
620
- fetch('/checkout', {
621
  method: 'POST',
622
  headers: { 'Content-Type': 'application/json' },
623
  body: JSON.stringify({ selectedCoupon: selectedCoupon })
 
617
  selectedCoupon = null; // Treat it as no coupon selected
618
  }
619
  // Send the selected coupon to the backend for processing
620
+ fetch('/cart/checkout', {
621
  method: 'POST',
622
  headers: { 'Content-Type': 'application/json' },
623
  body: JSON.stringify({ selectedCoupon: selectedCoupon })