Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion canvas/src/components/tabs/ChatTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ interface A2AResponse {
}

// extractReplyText pulls the agent's text reply out of an A2A response.
// Mirrors the Go-side extractReplyText in platform/internal/channels/manager.go.
// Mirrors the Go-side extractReplyText in workspace-server/internal/channels/manager.go.
function extractReplyText(resp: A2AResponse): string {
const result = resp?.result;
if (result?.parts) {
Expand Down