Using Pipeline in `catchAll` Handler
How do I use a pipeline in a
But this results in an effect whose result is the union of the result of
catchAll handler? For example, the wrong thing I have is:But this results in an effect whose result is the union of the result of
someEffect() and Effect.Effect<never, UnknownException, never>, whereas I just want it to be the result of someEffect (in other words, my catch all should legitimately fail, I just process the error first in the callback).