I can’t get the add to cart option to work i get the below error and nothing happens:
Error: [object Object]
The code I am using is :
export function button1_click(event,$w) {
const productId = $w(‘#dynamicDataset’).getCurrentItem()._id;
$w(“#shoppingCartIcon2”).addToCart(‘450f3586-1de8-7077-abc6-25118db8a5c8’, 1)
.then( () => {
console.log(“Product added”);
} )
. catch ( (error) => {
console.log(error);
} );
}
Please help