Skip to content

Commit 9fc395e

Browse files
lint: fix linter
1 parent 4a9adaa commit 9fc395e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/client/src/impl/node/NodeHttpTransport.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class NodeHttpTransport implements Transport {
7474
protocol: url.protocol,
7575
hostname: url.hostname,
7676
}
77-
this._contextPath = proxyUrl ? _url : (url.path ?? '')
77+
this._contextPath = proxyUrl ? _url : url.path ?? ''
7878
if (this._contextPath.endsWith('/')) {
7979
this._contextPath = this._contextPath.substring(
8080
0,

0 commit comments

Comments
 (0)