Skip to content

Commit

Permalink
update: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
liangfung committed Dec 12, 2024
1 parent 38b91a9 commit 286e0cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/vscode/src/chat/WebviewHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ export class WebviewHelper {

public async syncIndexedGitUrlToChatPanel(url: string | undefined) {
try {
this.logger.log('sync indexed git url', url)
this.logger.log("sync indexed git url", url);
await this.client?.updateGitUrl(url);
} catch {
this.logger.log(
Expand Down Expand Up @@ -372,7 +372,7 @@ export class WebviewHelper {
}

const filePathParams = await buildFilePathParams(editor.document.uri, this.gitProvider);
this.syncIndexedGitUrlToChatPanel(filePathParams?.gitRemoteUrl)
this.syncIndexedGitUrlToChatPanel(filePathParams?.gitRemoteUrl);
}

public addAgentEventListeners() {
Expand Down

0 comments on commit 286e0cd

Please sign in to comment.