{"section":"known-issues","requestedLocale":"en","requestedSlug":"products-in-the-productlist-that-have-an-itemattachment-duplicate-when-the-quantity-is-increased","locale":"en","slug":"products-in-the-productlist-that-have-an-itemattachment-duplicate-when-the-quantity-is-increased","path":"docs/en/known-issues/Shopping/products-in-the-productlist-that-have-an-itemattachment-duplicate-when-the-quantity-is-increased.md","branch":"main","content":"## Summary\n\nIf a store uses the [`product-list`](https://developers.vtex.com/vtex-developer-docs/docs/vtex-product-list) component of [Store Framework](https://developers.vtex.com/vtex-developer-docs/docs/getting-started-3), used in the [`minicart`](https://vtex.io/docs/components/all/vtex.minicart@2.61.1/), cart items may be duplicated when increasing the quantity of an item that has an [attachment](https://help.vtex.com/en/tutorial/adding-an-attachment--7zHMUpuoQE4cAskqEUWScU#) (`itemAttachment`).\n\nThis is because the default `noSplitItem` behavior of the API request that updates cart items is `false`.\n\n## Simulation\n\n1. In your store, add to the cart an item that has an attachment option;\n2. Include an attachment to the item added to the cart;\n3. Increase the quantity of this item with the cart item update request by sending the following body:\n    ```json\n    {\n        \"orderItems\": [\n            {\n                \"index\": 0,\n                \"quantity\": 2\n            }\n        ]\n    }\n    ```\n4. Notice that the API returns the list of items with the duplicate product, instead of increasing the quantity.\n\n## Workaround\n\nCurrently, there is no workaround."}