From 58680cb08ea535e1fb567416fa3466a744a01b99 Mon Sep 17 00:00:00 2001 From: David Lattimore Date: Fri, 24 Jul 2020 22:23:14 +1000 Subject: SSR: Fix a typescript lint warning --- editors/code/src/commands.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editors/code') diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts index 3ae995705..c21e5597c 100644 --- a/editors/code/src/commands.ts +++ b/editors/code/src/commands.ts @@ -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: "() ==>> ()", -- cgit v1.2.3