diff --git a/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarThreadSelector.tsx b/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarThreadSelector.tsx index f0c2dbc6..87e99557 100644 --- a/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarThreadSelector.tsx +++ b/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarThreadSelector.tsx @@ -56,11 +56,11 @@ export const SidebarThreadSelector = () => { {sortedThreadIds.length === 0 - ?
{`No history found`}
+ ?
{`There are no chat threads yet.`}
: sortedThreadIds.map((threadId) => { if (!allThreads) { - return
  • {`No history found`}
  • ; + return
  • {`Error accessing chat history.`}
  • ; } const pastThread = allThreads[threadId]; @@ -93,7 +93,7 @@ export const SidebarThreadSelector = () => { return (