Trying to access "responseJSON.original_total_price"
This is my code –
const CartObject = theme.cart.getCart();
console.log(CartObject.responseJSON.original_total_price)
Trying to access "responseJSON.original_total_price"
This is my code –
const CartObject = theme.cart.getCart();
console.log(CartObject.responseJSON.original_total_price)
2
Answers
Making it an async function fixed it.
you need to use
JSON.parse
function on response e.g.