diff --git a/core/fetch/src/fetch.ts b/core/fetch/src/fetch.ts index 635c6ae3e..a083d18b5 100644 --- a/core/fetch/src/fetch.ts +++ b/core/fetch/src/fetch.ts @@ -82,9 +82,9 @@ export async function serviceRequest, TMeta = Re * ``` */ export function fetch(options: FetchOptions): Promise { - const _options = _processOptions(options); - logger.logMethodArgs('fetch', {options, _options}); - return _handleCacheStrategy(_options); + options = _processOptions(options); + logger.logMethodArgs('fetch', {options}); + return _handleCacheStrategy(options as Required); } /**