0.2.3 #33

Merged
Thilawyn merged 12 commits from next into master 2026-01-23 01:50:12 +01:00
Showing only changes of commit 929e062d0c - Show all commits

View File

@@ -77,7 +77,7 @@ implements QueryClientService {
): Effect.Effect<QueryClientCacheEntry> {
return DateTime.now.pipe(
Effect.map(now => new QueryClientCacheEntry(result, staleTime, now, now)),
Effect.tap(entry => SubscriptionRef.update(HashMap.set(key, entry))),
Effect.tap(entry => SubscriptionRef.update(this.cache, HashMap.set(key, entry))),
)
}