Skip to content

Commit 24c8f60

Browse files
committed
fix: if condition
1 parent 8a3c2e4 commit 24c8f60

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apollo-server-integration-svelte",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"scripts": {
55
"dev": "vite dev",
66
"build": "vite build && pnpm run package",

src/lib/startServerAndCreatSvelteHandler.ts

+2-10
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,10 @@ export function startServerAndCreateSvelteKitHandler<Context extends BaseContext
4949
headers[key] = value;
5050
}
5151

52-
if (isSvelteApiRequest(event)) {
53-
return new Response(body.join(''), {
52+
return new Response(body.join(''), {
5453
headers,
5554
status: httpGraphQLResponse.status || 200,
56-
});
57-
} else {
58-
return {
59-
status: httpGraphQLResponse.status || 200,
60-
headers,
61-
body: body.join(''),
62-
};
63-
}
55+
});
6456
}
6557

6658
return handler;

0 commit comments

Comments
 (0)