The addWeapons/addSummons methods were using Promise.all with Array.fill() which created arrays where all elements referenced the same object. This caused the request deduplication logic in BaseAdapter to cancel previous requests since they all had the same body/requestId. Fix: - Use Array.from() with spread to create unique object instances - Execute requests sequentially to avoid deduplication conflicts - Improve error handling in AddToCollectionModal to filter CancelledErrors |
||
|---|---|---|
| .. | ||
| adapters | ||
| mutations | ||
| queries | ||
| resources | ||
| schemas | ||