Using Cart JS Scoped API, when ordering an item with a quantity of '1', multiple RITMs are being ordered (1+).Issue The user is facing some issues with the Cart JS Scoped API. Namely, when they are ordering one Request, and setting the quantity of the RITM to '1' (i.e. one RITM should be created), sometimes the user is seeing 2+ RITMs get created. They wanted to know why.ResolutionThe reason the user is seeing this behavior is that they are using a cart name of the form 'cart_' + itemId + UserID. This is not advised. As per an internal task to the Product Owners, it was found that that the user is using a cart name of the form 'cart_' + itemId + UserID.Our Product Owners suggested that users please not use cartNames starting with 'cart_' or ones containing itemId. Rather, something like gs.generateGUID() for cartName is advised.