From 903ddeb45c0b3c55394f00f6bb0cabdb5a99c9e2 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 04:11:08 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- clients/vscode/src/chat/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/vscode/src/chat/utils.ts b/clients/vscode/src/chat/utils.ts index fe76c49033d6..227bee6c028b 100644 --- a/clients/vscode/src/chat/utils.ts +++ b/clients/vscode/src/chat/utils.ts @@ -85,7 +85,7 @@ export function chatPanelLineRangeToVSCodeRange(lineRange: LineRange): VSCodeRan export function chatPanelLocationToVSCodeRange(location: Location | undefined): VSCodeRange | null { if (!location) { - return null + return null; } if (typeof location === "number") { const position = new VSCodePosition(Math.max(0, location - 1), 0);