const myEffect = Effect.gen(...).pipe(Effect.catchTags(...)) // works fine
const handleSomeErrors = Effect.catchTags(...)
const myEffect = Effect.gen(...).pipe(handleSomeErrors) // Effect<A,unknown,R> errors have for some reason been removed
const myEffect = Effect.gen(...).pipe(Effect.catchTags(...)) // works fine
const handleSomeErrors = Effect.catchTags(...)
const myEffect = Effect.gen(...).pipe(handleSomeErrors) // Effect<A,unknown,R> errors have for some reason been removed