We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ee88a9 commit 3ebf56cCopy full SHA for 3ebf56c
src/commands/restDebugPanel.ts
@@ -20,8 +20,6 @@ interface WebviewMessage {
20
bodyType: string;
21
/** Request body */
22
bodyContent: string;
23
- /** Selected web application */
24
- webApp: string;
25
}
26
27
/**
@@ -358,7 +356,7 @@ export class RESTDebugPanel {
358
356
axios
359
357
.request({
360
method: message.method,
361
- url: `${encodeURI(`${serverInfo}${message.webApp}${path}`)}?${urlParams.toString()}`,
+ url: `${encodeURI(`${serverInfo}${path}`)}?${urlParams.toString()}`,
362
headers,
363
data: hasBody ? message.bodyContent : undefined,
364
withCredentials: true,
0 commit comments