File tree 1 file changed +5
-3
lines changed 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,8 @@ export const watchBuildLogsByTemplateVersionId = (
187
187
188
188
const proto = location . protocol === "https:" ? "wss:" : "ws:" ;
189
189
const socket = new WebSocket (
190
- `${ proto } //${ location . host
190
+ `${ proto } //${
191
+ location . host
191
192
} /api/v2/templateversions/${ versionId } /logs?${ searchParams . toString ( ) } `,
192
193
) ;
193
194
@@ -269,7 +270,8 @@ export const watchBuildLogsByBuildId = (
269
270
}
270
271
const proto = location . protocol === "https:" ? "wss:" : "ws:" ;
271
272
const socket = new WebSocket (
272
- `${ proto } //${ location . host
273
+ `${ proto } //${
274
+ location . host
273
275
} /api/v2/workspacebuilds/${ buildId } /logs?${ searchParams . toString ( ) } `,
274
276
) ;
275
277
socket . binaryType = "blob" ;
@@ -380,7 +382,7 @@ export class MissingBuildParameters extends Error {
380
382
* lexical scope.
381
383
*/
382
384
class ApiMethods {
383
- constructor ( protected readonly axios : AxiosInstance ) { }
385
+ constructor ( protected readonly axios : AxiosInstance ) { }
384
386
385
387
login = async (
386
388
email : string ,
You can’t perform that action at this time.
0 commit comments