diff --git a/surfsense_backend/app/tasks/chat/stream_new_chat.py b/surfsense_backend/app/tasks/chat/stream_new_chat.py index fb568ab17..11024e513 100644 --- a/surfsense_backend/app/tasks/chat/stream_new_chat.py +++ b/surfsense_backend/app/tasks/chat/stream_new_chat.py @@ -557,15 +557,15 @@ async def stream_new_chat( status="in_progress", items=last_active_step_items, ) - elif tool_name == "ls": - last_active_step_title = "Exploring files" - last_active_step_items = [] - yield streaming_service.format_thinking_step( - step_id=tool_step_id, - title="Exploring files", - status="in_progress", - items=None, - ) + # elif tool_name == "ls": + # last_active_step_title = "Exploring files" + # last_active_step_items = [] + # yield streaming_service.format_thinking_step( + # step_id=tool_step_id, + # title="Exploring files", + # status="in_progress", + # items=None, + # ) else: last_active_step_title = f"Using {tool_name.replace('_', ' ')}" last_active_step_items = [] diff --git a/surfsense_web/components/assistant-ui/thread.tsx b/surfsense_web/components/assistant-ui/thread.tsx index e98576f9e..74669e374 100644 --- a/surfsense_web/components/assistant-ui/thread.tsx +++ b/surfsense_web/components/assistant-ui/thread.tsx @@ -186,14 +186,14 @@ const ThinkingStepsDisplay: FC<{ steps: ThinkingStep[]; isThreadRunning?: boolea
{/* Vertical connection line - extends to next dot */} {!isLast && ( -
+
)} {/* Step dot - on top of line */}
{effectiveStatus === "in_progress" ? ( - + ) : ( - + )}
diff --git a/surfsense_web/components/sidebar/nav-secondary.tsx b/surfsense_web/components/sidebar/nav-secondary.tsx index 936c12c21..23aeabc38 100644 --- a/surfsense_web/components/sidebar/nav-secondary.tsx +++ b/surfsense_web/components/sidebar/nav-secondary.tsx @@ -38,7 +38,7 @@ export function NavSecondary({ {item.url === "#" ? ( // Non-interactive display item (e.g., search space name) -
+
{item.title}