Skip to content

Commit 3d244f8

Browse files
committed
Remove semicolon
1 parent a7abb79 commit 3d244f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/routes/pathProxy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const getProxyTarget = (req: Request, passthroughPath?: boolean): string => {
1111
return `http://0.0.0.0:${req.params.port}/${req.originalUrl}`
1212
}
1313
const query = qs.stringify(req.query)
14-
return encodeURI(`http://0.0.0.0:${req.params.port}${req.params[0] || ""}${query ? `?${query}` : ""}`);
14+
return encodeURI(`http://0.0.0.0:${req.params.port}${req.params[0] || ""}${query ? `?${query}` : ""}`)
1515
}
1616

1717
export async function proxy(

0 commit comments

Comments
 (0)