mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
hotfix(isa-app-store, core-storage): prevent caching of erroneous user state Remove shareReplay(1) operator from user state observable to ensure fresh state retrieval on each request. This prevents the system from retaining and reusing failed or invalid state data across multiple operations. The current implementation now makes two API calls (GET + POST) per set operation to guarantee the latest state is always used, trading performance for reliability in error scenarios. Refs: #5270, #5249