Shopify Cart Transform Functions Not Updating Product's Title

POS is not updating the Product’s title after a function ran, even though the title property is given and the result is correctly formatted.

My app runs a function and gives an output like the below, even though the output doesn’t show any error after it’s given, the POS itself doesn’t show the new product’s title!


      {
  "operations": [
    {
      "lineUpdate": {
        "cartLineId": "gid",
        "price": {
          "adjustment": {
            "fixedPricePerUnit": {
              "amount": "0.01"
            }
          }
        },
        "title": "Product title - random note"
      }
    }
  ]
}