Skip to content

Commit 68ef091

Browse files
authored
Fix console URL (#1215)
1 parent 8fc0587 commit 68ef091

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/frontend/common/RestClient.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export async function getConsoleBuildOutput(
130130
url: string,
131131
): Promise<string | null> {
132132
try {
133-
const response = await fetch(`${url}/stages/consoleBuildOutput`);
133+
const response = await fetch(`${url}stages/consoleBuildOutput`);
134134
if (!response.ok) throw response.statusText;
135135
return await response.text();
136136
} catch (e) {

0 commit comments

Comments
 (0)