We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fc0587 commit 68ef091Copy full SHA for 68ef091
1 file changed
src/main/frontend/common/RestClient.tsx
@@ -130,7 +130,7 @@ export async function getConsoleBuildOutput(
130
url: string,
131
): Promise<string | null> {
132
try {
133
- const response = await fetch(`${url}/stages/consoleBuildOutput`);
+ const response = await fetch(`${url}stages/consoleBuildOutput`);
134
if (!response.ok) throw response.statusText;
135
return await response.text();
136
} catch (e) {
0 commit comments