diff --git a/apps/remix-ide/src/app/tabs/script-runner-ui.tsx b/apps/remix-ide/src/app/tabs/script-runner-ui.tsx index bc03222203..82153f0af3 100644 --- a/apps/remix-ide/src/app/tabs/script-runner-ui.tsx +++ b/apps/remix-ide/src/app/tabs/script-runner-ui.tsx @@ -26,7 +26,7 @@ const profile = { const configFileName = '.remix/script.config.json' let baseUrl = 'https://remix-project-org.github.io/script-runner-generator' -let customBuildUrl = 'http://localhost:4000/build' +const customBuildUrl = 'http://localhost:4000/build' interface IScriptRunnerState { customConfig: customScriptRunnerConfig @@ -388,7 +388,7 @@ export class ScriptRunnerUIPlugin extends ViewPlugin { // The request was made and the server responded with a status code // that falls out of the range of 2xx console.log('Error status:', error.response.status); - console.log('Error data:', error.response.data); // This should give you the output being sent + console.log('Error data:', error.response.data); // This should give you the output being sent console.log('Error headers:', error.response.headers); if (error.response.data.error) { @@ -424,5 +424,4 @@ export class ScriptRunnerUIPlugin extends ViewPlugin { } } - } \ No newline at end of file