diff --git a/src/features/project-workspace/Runtime.tsx b/src/features/project-workspace/Runtime.tsx index c9149bd..54fc85d 100644 --- a/src/features/project-workspace/Runtime.tsx +++ b/src/features/project-workspace/Runtime.tsx @@ -115,7 +115,7 @@ export function Runtime(props: RuntimeProps) { begin(requestInfo); try { - const response = await global.fetch(running.url, { + const response = await fetch(running.url, { method: requestInfo.method, headers: requestInfo.headers.reduce( (headers, header) => ({ ...headers, [header.key]: header.value }),