diff --git a/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx b/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx index 93c11eea..bad7832e 100644 --- a/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx +++ b/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx @@ -1816,14 +1816,15 @@ const Checkpoint = ({ message, threadId, messageIdx, isCheckpointGhost, threadIs const chatThreadService = accessor.get('IChatThreadService') return
{ if (threadIsRunning) return chatThreadService.jumpToCheckpointBeforeMessageIdx({ threadId, messageIdx, jumpToUserModified: true }) @@ -1897,7 +1898,9 @@ const ChatBubble = ({ threadId, chatMessage, currCheckpointIdx, isCommitted, mes else if (role === 'tool') { if (chatMessage.type === 'invalid_params') { - return + return
+ +
} const ToolResultWrapper = toolNameToComponent[chatMessage.name]?.resultWrapper as ResultWrapper @@ -1919,7 +1922,9 @@ const ChatBubble = ({ threadId, chatMessage, currCheckpointIdx, isCommitted, mes } else if (role === 'decorative_canceled_tool') { - return + return
+ +
} else if (role === 'checkpoint') {