Skip to content

Commit 383ea43

Browse files
committed
chore: fix type issue
1 parent f605b9d commit 383ea43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/adapters/plain.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export async function _handlePlainRequest(app: App, request: PlainRequest) {
9292
status: nodeRes.statusCode,
9393
statusText: nodeRes.statusMessage,
9494
headers: _normalizeUnenvHeaders(nodeRes._headers),
95-
body: nodeRes._data,
95+
body: (nodeRes as any)._data,
9696
};
9797
}
9898

0 commit comments

Comments
 (0)