Skip to content

Commit

Permalink
fix: operator precedence error
Browse files Browse the repository at this point in the history
  • Loading branch information
x-oflisback committed Feb 1, 2023
1 parent 8bdf9ff commit 92093ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class Client {
}

if (jupyterHubUserPath) {
this.jhUserPath = jupyterHubUserPath + jupyterHubUserPath.endsWith('/') ? '' : '/'
this.jhUserPath = jupyterHubUserPath + (jupyterHubUserPath.endsWith('/') ? '' : '/')
}

this.jhToken = jupyterHubToken
Expand Down

0 comments on commit 92093ad

Please sign in to comment.