diff --git a/src/fetch.ts b/src/fetch.ts index 6c85c4e..882794c 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -194,6 +194,7 @@ export function createFetch(globalOptions: CreateFetchOptions = {}): $Fetch { } } + // TODO: Can we merge signals? if (!context.options.signal && context.options.timeout) { const controller = new AbortController(); setTimeout(() => controller.abort(), context.options.timeout);