Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
abeatrix committed May 11, 2023
1 parent e3eb719 commit 6faf323
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/cody/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ All notable changes to Sourcegraph Cody will be documented in this file.
### Fixed

- UI bug that capped buttons at 300px max-width with visible border [pull/51726](https://github.com/sourcegraph/sourcegraph/pull/51726)
- Add error message on top of Cody's response instead of overriding it [pull/tbc]()
- Add error message on top of Cody's response instead of overriding it [pull/51762](https://github.com/sourcegraph/sourcegraph/pull/51762)

### Changed

Expand Down
1 change: 0 additions & 1 deletion client/cody/src/chat/ChatViewProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,6 @@ export class ChatViewProvider implements vscode.WebviewViewProvider, vscode.Disp
const { text: highlightedDisplayText } = await highlightTokens(displayText || '', filesExist)
this.transcript.addAssistantResponse(text || '', highlightedDisplayText)
}
this.transcript.addErrorAsAssistantResponse('testing')
void this.onCompletionEnd()
},
})
Expand Down
2 changes: 1 addition & 1 deletion client/cody/webviews/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import type { VSCodeWrapper } from './utils/VSCodeApi'

export const App: React.FunctionComponent<{ vscodeAPI: VSCodeWrapper }> = ({ vscodeAPI }) => {
const [config, setConfig] = useState<Pick<Configuration, 'debug' | 'serverEndpoint'> | null>(null)
const [debugLog, setDebugLog] = useState(['No data yet'])
const [debugLog, setDebugLog] = useState<string[]>([])
const [view, setView] = useState<View | undefined>()
const [messageInProgress, setMessageInProgress] = useState<ChatMessage | null>(null)
const [messageBeingEdited, setMessageBeingEdited] = useState<boolean>(false)
Expand Down

0 comments on commit 6faf323

Please sign in to comment.