Product not found, CANNOT_ADD_CART

So something like this.

$w.onReady(function () {
} );

$w("#myButton").onClick( () => {
$w("#myShoppingCartIcon").addToCart("ea77f230-558f-0ba565e8f827", {
"customTextFields": [ {
"title": "Personalization 1",
"value": "Personalized Text 1"
} ]
} )
.then( () => {
console.log("Product added");
} )
.catch( (error) => {
console.log(error);
} );
} )