Skip to content

Commit 6ebb3e4

Browse files
committed
Fix tsc error.
1 parent d938cb9 commit 6ebb3e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/manifest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ function initEndpoint(
176176
export function initV1Endpoint(...opts: ManifestOptions[]): ManifestEndpoint {
177177
// eslint-disable-next-line @typescript-eslint/no-unused-vars
178178
const { concurrency, ...resetOpts } = RESETTABLE_OPTIONS;
179-
return initEndpoint(resetOpts, ...opts);
179+
return initEndpoint({ ...resetOpts }, ...opts);
180180
}
181181

182182
/**

0 commit comments

Comments
 (0)