Skip to content

Commit 3fe503a

Browse files
committed
fix: clean install deps
1 parent 4a39405 commit 3fe503a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/aws-lsp-codewhisperer/src/language-server/agenticChat/agenticChatController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1369,7 +1369,7 @@ export class AgenticChatController implements ChatHandlers {
13691369
} else if (toolUse?.name === 'fsRead') {
13701370
await this.#features.lsp.window.showDocument({ uri: params.filePath })
13711371
} else {
1372-
const absolutePath = params.filePath ?? (await this.#resolveAbsolutePath(params.filePath))
1372+
const absolutePath = params.fullPath ?? (await this.#resolveAbsolutePath(params.filePath))
13731373
if (absolutePath) {
13741374
await this.#features.lsp.window.showDocument({ uri: absolutePath })
13751375
}

0 commit comments

Comments
 (0)