Merged
Conversation
- Redesign homepage with animated gradient header, project cards with monograms, and inline rename - Overhaul conversation UI: iMessage-style user bubbles, Databricks logo for assistant, tool tracking per response - Scope streaming to owning conversation so switching chats doesn't leak state - Left-justify loader/thinking indicators, collapsible config panel with custom resource dropdowns - Simplify docs page to use MainLayout, remove Tools & Skills section - Add favicon Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
When conversation.created fired during streaming, streamingConversationIdRef was set to the new ID but currentConversation was still null, causing isStreamingHere to evaluate to false and hiding the loader/streaming UI. Fix: set currentConversation immediately on conversation.created so the IDs match and isStreamingHere stays true. Also refetch full conversation in onDone to get the proper title. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Replace global isStreaming boolean with per-conversation streaming state using allStreamsRef and streamingConvIds. Each conversation can now stream independently - starting a new chat while another is processing no longer blocks the input. Stream data is tracked per-conversation and synced to UI state when switching between conversations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Update currentConvIdRef immediately on conversation switch (not via useEffect) so stream callbacks resume updating state without a gap - Store pending user messages in allStreamsRef so they're visible when switching back before the DB has saved them - Fix empty state condition: show message thread (with loader) whenever isStreamingHere is true, even if messages array is empty and no text has streamed yet (e.g. during thinking phase) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
auschoi96
approved these changes
Feb 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Loom vid: https://www.loom.com/share/ded8d1ac348846948ead71a06eebb02b
Only issues yet left to solve: chats need to be executing separately and potentially concurrently.
Summary
Test plan
🤖 Generated with Claude Code