chore: save session log (#740)

This commit is contained in:
Pavel Feldman
2025-07-22 20:06:03 -07:00
committed by GitHub
parent 6320b08173
commit b1a0f775cf
9 changed files with 141 additions and 15 deletions

View File

@@ -51,8 +51,6 @@ const goBack = defineTabTool({
},
handle: async (tab, params, response) => {
response.setIncludeSnapshot();
await tab.page.goBack();
response.setIncludeSnapshot();
response.addCode(`// Navigate back`);
@@ -70,8 +68,6 @@ const goForward = defineTabTool({
type: 'readOnly',
},
handle: async (tab, params, response) => {
response.setIncludeSnapshot();
await tab.page.goForward();
response.setIncludeSnapshot();
response.addCode(`// Navigate forward`);