hensei-web/src/lib/api
Justin Edmund c37c4f0101 fix request cancellation issue in batch add weapons/summons
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
2025-12-03 07:37:03 -08:00
..
adapters fix request cancellation issue in batch add weapons/summons 2025-12-03 07:37:03 -08:00
mutations add batch weapon/summon methods to collection adapter and mutations 2025-12-03 07:14:30 -08:00
queries add quantity counter and selectable components for weapons/summons 2025-12-03 07:19:04 -08:00
resources fix user settings API to match rails backend params 2025-12-02 08:51:57 -08:00
schemas refactor: unify visibility types to string literals 2025-11-28 21:43:55 -08:00