Skip to content

Commit b5f548d

Browse files
committed
fix rebase
1 parent b129a01 commit b5f548d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/core/src/amazonq/webview/ui/apps/featureDevChatConnector.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export interface ConnectorProps extends BaseConnectorProps {
1717
messageId: string | undefined,
1818
enableStopAction: boolean
1919
) => void
20+
onChatAnswerUpdated?: (tabID: string, message: ChatItem) => void
2021
sendFeedback?: (tabId: string, feedbackPayload: FeedbackPayload) => void | undefined
2122
onFileComponentUpdate: (
2223
tabID: string,
@@ -34,6 +35,7 @@ export interface ConnectorProps extends BaseConnectorProps {
3435

3536
export class Connector extends BaseConnector {
3637
private readonly onFileComponentUpdate
38+
private readonly onChatAnswerUpdated
3739
private readonly onAsyncEventProgress
3840
private readonly updatePlaceholder
3941
private readonly chatInputEnabled
@@ -52,6 +54,7 @@ export class Connector extends BaseConnector {
5254
this.chatInputEnabled = props.onChatInputEnabled
5355
this.onUpdateAuthentication = props.onUpdateAuthentication
5456
this.onNewTab = props.onNewTab
57+
this.onChatAnswerUpdated = props.onChatAnswerUpdated
5558
}
5659

5760
onOpenDiff = (tabID: string, filePath: string, deleted: boolean, messageId?: string): void => {

0 commit comments

Comments
 (0)