From f9eba1bef85da43c18176b2bd483358a21e13472 Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Fri, 25 Oct 2024 17:33:48 +0200 Subject: [PATCH] lint --- apps/remix-ide/src/app/tabs/script-runner-ui.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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