diff --git a/src/commands/restDebugPanel.ts b/src/commands/restDebugPanel.ts index bf2b6878..264e25d6 100644 --- a/src/commands/restDebugPanel.ts +++ b/src/commands/restDebugPanel.ts @@ -20,8 +20,6 @@ interface WebviewMessage { bodyType: string; /** Request body */ bodyContent: string; - /** Selected web application */ - webApp: string; } /** @@ -358,7 +356,7 @@ export class RESTDebugPanel { axios .request({ method: message.method, - url: `${encodeURI(`${serverInfo}${message.webApp}${path}`)}?${urlParams.toString()}`, + url: `${encodeURI(`${serverInfo}${path}`)}?${urlParams.toString()}`, headers, data: hasBody ? message.bodyContent : undefined, withCredentials: true,