Inventory grid layout not saving

The inventory grid is saving properly, and added items save properly. The currency saves properly. The issue: when I move items from one slot to another for organization, the moved items do not save in their new position. Suggestions?
 
Add an InventoryGridSaver component on the InventoryGrid.
The Index of the item in the grid is cached in the InventoryGrid, not in the Inventory component. So you need a different saver for it
 
Top