Idiomatic Way to Run and Ignore Effect Results in Effect Framework

is there a simple way to run an effect, wait for it to complete, but ignore the result (including any errors)? I do yield* effect.pipe(Effect.catchAll(() => Effect.succeed(undefined))) but I'm wondering if there's an idiomatic way to do this
Was this page helpful?