Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentluce committed Jun 11, 2024
1 parent 935ce82 commit 130a139
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,11 @@ export const getPortTableRows = (
}
} else if (window.env !== undefined && window.env.domain !== undefined) {
link =
`https://` +
`${port.number}-${shortUUID(serviceUUID)}-${shortUUID(enclaveUUID)}` +
`.${window.env.domain}`;
`https://` + `${port.number}-${shortUUID(serviceUUID)}-${shortUUID(enclaveUUID)}` + `.${window.env.domain}`;
} else {
link = `${port.maybeApplicationProtocol ? port.maybeApplicationProtocol + "://" : ""}${publicIp}:${publicPorts[name].number
}`;
link = `${port.maybeApplicationProtocol ? port.maybeApplicationProtocol + "://" : ""}${publicIp}:${
publicPorts[name].number
}`;
}
return {
port: {
Expand Down

0 comments on commit 130a139

Please sign in to comment.