mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 13:18:47 +00:00
SSR: Fix a typescript lint warning
This commit is contained in:
parent
3dac31fe80
commit
58680cb08e
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ export function ssr(ctx: Ctx): Cmd {
|
|||
if (!editor || !client) return;
|
||||
|
||||
const position = editor.selection.active;
|
||||
let textDocument = { uri: editor.document.uri.toString() };
|
||||
const textDocument = { uri: editor.document.uri.toString() };
|
||||
|
||||
const options: vscode.InputBoxOptions = {
|
||||
value: "() ==>> ()",
|
||||
|
|
Loading…
Reference in a new issue