Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jan 28, 2025
1 parent 356be74 commit 82f873c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/internal/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function createNitroApp(): NitroApp {
// Create local fetch callers
const localCall = createCall(toNodeListener(h3App) as any);
// prettier-ignore
const _localFetch = createLocalFetch(localCall, (...args) => globalThis.fetch(...args) );
const _localFetch = createLocalFetch(localCall, (...args) => globalThis.fetch(...args));
const localFetch: typeof fetch = (input, init) =>
_localFetch(input as RequestInfo, init as any).then((response) =>
normalizeFetchResponse(response)
Expand Down

0 comments on commit 82f873c

Please sign in to comment.