diff --git a/apps/web/src/components/BranchToolbar.tsx b/apps/web/src/components/BranchToolbar.tsx index 7a6785a..b0f7763 100644 --- a/apps/web/src/components/BranchToolbar.tsx +++ b/apps/web/src/components/BranchToolbar.tsx @@ -162,11 +162,9 @@ export default function BranchToolbar({ )} {providerThreadId ? ( - - Thread ID - - {providerThreadId} - + + Thread ID + {providerThreadId} ) : null} diff --git a/apps/web/src/components/ChatView.tsx b/apps/web/src/components/ChatView.tsx index a65b650..aedc9ae 100644 --- a/apps/web/src/components/ChatView.tsx +++ b/apps/web/src/components/ChatView.tsx @@ -606,10 +606,7 @@ export default function ChatView({ threadId }: ChatViewProps) { const interactionMode = supportedInteractionModes.includes(requestedInteractionMode) ? requestedInteractionMode : DEFAULT_INTERACTION_MODE; - const interactionModeLabel = INTERACTION_MODE_LABEL_BY_OPTION[interactionMode]; - const InteractionModeIcon = INTERACTION_MODE_ICON_BY_OPTION[interactionMode]; const nextInteractionMode = getNextInteractionMode(interactionMode, supportedInteractionModes); - const nextInteractionModeLabel = INTERACTION_MODE_LABEL_BY_OPTION[nextInteractionMode]; const baseThreadModel = resolveModelSlugForProvider( selectedProvider, activeThread?.model ?? activeProject?.model ?? getDefaultModel(selectedProvider), @@ -3941,14 +3938,26 @@ export default function ChatView({ threadId }: ChatViewProps) {