diff --git a/packages/effect/src/Either.ts b/packages/effect/src/Either.ts index 6ad0a011db..44d879b9a6 100644 --- a/packages/effect/src/Either.ts +++ b/packages/effect/src/Either.ts @@ -750,7 +750,7 @@ export const all: > | Record => { if (Symbol.iterator in input) { const out: Array> = [] - for (const e of (input as Iterable>)) { + for (const e of input) { if (isLeft(e)) { return e }