chore: generate

pull/20125/head
opencode-agent[bot] 2026-03-30 20:08:09 +00:00
parent c5442d418d
commit c8389cf96d
1 changed files with 2 additions and 2 deletions

View File

@ -133,8 +133,8 @@ export namespace Runner {
}),
).pipe(
Effect.flatten,
Effect.catch((e): Effect.Effect<A, E> =>
e instanceof Cancelled ? (onInterrupt ?? Effect.die(e)) : Effect.fail(e as E),
Effect.catch(
(e): Effect.Effect<A, E> => (e instanceof Cancelled ? (onInterrupt ?? Effect.die(e)) : Effect.fail(e as E)),
),
)