Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Dec 2, 2024
1 parent 3b9b944 commit 8f7d75d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions clients/vscode/src/chat/WebviewHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -558,10 +558,10 @@ export class WebviewHelper {
this.webview?.postMessage({ action: "dispatchKeyboardEvent", type, event });
},
onOpenExternal: async (url: string) => {
this.logger.info('Open external', url)
this.logger.info("Open external", url);
const success = await env.openExternal(Uri.parse(url));
return success;
}
},
});
}
}
2 changes: 1 addition & 1 deletion clients/vscode/src/chat/chatPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function createClient(webview: Webview, api: ClientApiMethods): ServerApi
onLoaded: api.onLoaded,
onCopy: api.onCopy,
onKeyboardEvent: api.onKeyboardEvent,
onOpenExternal: api.onOpenExternal
onOpenExternal: api.onOpenExternal,
},
});
}

0 comments on commit 8f7d75d

Please sign in to comment.