Skip to content

Commit a353922

Browse files
committed
fix
1 parent 9ad387b commit a353922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array_result.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export function extractArrayResultError(
144144
} else if (error instanceof AggregateError) {
145145
const { errors } = error;
146146
if (
147-
errors.length > 1 &&
147+
errors.length > 0 &&
148148
errors.every((error) => error instanceof ArrayResultError)
149149
) {
150150
return errors;

0 commit comments

Comments
 (0)