From b8a3b089b7298dc65dc596a12c9e6c44d87c40e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Wed, 14 Jan 2026 22:38:12 +0100 Subject: [PATCH] Fix --- packages/effect-fc/src/Query.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/effect-fc/src/Query.ts b/packages/effect-fc/src/Query.ts index 2bdfac7..7874fbf 100644 --- a/packages/effect-fc/src/Query.ts +++ b/packages/effect-fc/src/Query.ts @@ -1,4 +1,4 @@ -import { type Cause, Console, type Context, DateTime, type Duration, Effect, Exit, Fiber, HashMap, identity, Option, Pipeable, Predicate, type Scope, Stream, Subscribable, SubscriptionRef } from "effect" +import { type Cause, type Context, DateTime, type Duration, Effect, Exit, Fiber, HashMap, identity, Option, Pipeable, Predicate, type Scope, Stream, Subscribable, SubscriptionRef } from "effect" import * as QueryClient from "./QueryClient.js" import * as Result from "./Result.js" @@ -204,9 +204,7 @@ extends Pipeable.Class() implements Query { get changes() { return Stream.make(entry.result as Result.Result) }, })), ), - onNone: () => this.start(key, initial).pipe( - Effect.tap(Console.log("Cache missed")) - ), + onNone: () => this.start(key, initial), })) }