mirror of
https://github.com/voideditor/void
synced 2026-05-23 17:38:23 +00:00
fix type
This commit is contained in:
parent
d9397d870f
commit
0f0719c596
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ export function activate(context: vscode.ExtensionContext) {
|
|||
const filePath = editor.document.uri;
|
||||
|
||||
// send message to the webview (Sidebar.tsx)
|
||||
sidebarWebviewProvider.webview.then(webview => webview.postMessage({ type: 'ctrl+l', selection: { selectionStr, selectionRange, filePath } } satisfies MessageToSidebar));
|
||||
sidebarWebviewProvider.webview.then(webview => webview.postMessage({ type: 'ctrl+l', selection: { selectionStr, filePath } } satisfies MessageToSidebar));
|
||||
})
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue