Effect.tap Type Inference Issue
why does Effect.tap not infer the parameter type? I swear this wasn't the case before, but maybe I'm hallucinating
const program = pipe(
Effect.succeed("a string"),
// \/ (parameter) x: NoInfer<A>
Effect.tap((x) => Console.log(x)),
);