Hi @Ecommerce5 ,
I was able to solve this in my situation by deleting a local storage item with the name “__ui” that was being created on the checkout page. I put this line of code in the script tag in the cart template before any code that makes updates to cart attributes.
localStorage.removeItem("__ui")
Now when users navigate back to cart from the checkout, the right version of the cart gets loaded.