Effect.tap Type Inference Issue

const program = pipe(
    Effect.succeed("a string"),
    //          \/ (parameter) x: NoInfer<A>
    Effect.tap((x) => Console.log(x)),
);

why does Effect.tap not infer the parameter type? I swear this wasn't the case before, but maybe I'm hallucinating
Was this page helpful?