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 188e6ce commit 3a331f0Copy full SHA for 3a331f0
src/McpResponse.ts
@@ -347,9 +347,8 @@ Call ${handleDialog.name} to handle it before continuing.`);
347
const parts = [`## Pages`];
348
let idx = 0;
349
for (const page of context.getPages()) {
350
- const devToolsPage = context.getDevToolsPage(page);
351
parts.push(
352
- `${idx}: ${page.url()}${idx === context.getSelectedPageIdx() ? ' [selected]' : ''}${devToolsPage ? ' [has DevTools opened]' : ''}`,
+ `${idx}: ${page.url()}${idx === context.getSelectedPageIdx() ? ' [selected]' : ''}`,
353
);
354
idx++;
355
}
0 commit comments