diff --git a/apps/x/apps/renderer/src/App.tsx b/apps/x/apps/renderer/src/App.tsx
index c07064cc..13cc4704 100644
--- a/apps/x/apps/renderer/src/App.tsx
+++ b/apps/x/apps/renderer/src/App.tsx
@@ -20,7 +20,6 @@ import {
Conversation,
ConversationContent,
ConversationEmptyState,
- ConversationScrollButton,
} from '@/components/ai-elements/conversation';
import {
Message,
@@ -1371,7 +1370,6 @@ function App() {
>
)}
-
diff --git a/apps/x/apps/renderer/src/components/chat-sidebar.tsx b/apps/x/apps/renderer/src/components/chat-sidebar.tsx
index 01a30a08..a6afb274 100644
--- a/apps/x/apps/renderer/src/components/chat-sidebar.tsx
+++ b/apps/x/apps/renderer/src/components/chat-sidebar.tsx
@@ -12,7 +12,6 @@ import {
Conversation,
ConversationContent,
ConversationEmptyState,
- ConversationScrollButton,
} from '@/components/ai-elements/conversation'
import {
Message,
@@ -493,7 +492,6 @@ export function ChatSidebar({
>
)}
-
{/* Input area - responsive to sidebar width, matches floating bar position exactly */}
@@ -504,7 +502,7 @@ export function ChatSidebar({
{mentionHighlights.segments.map((segment, index) =>
segment.highlighted ? (
@@ -529,7 +527,7 @@ export function ChatSidebar({
placeholder="Ask anything..."
disabled={isProcessing}
rows={1}
- className="relative z-10 w-full bg-transparent text-sm outline-none placeholder:text-muted-foreground disabled:opacity-50 resize-none max-h-32 min-h-[1.5rem]"
+ className="relative z-10 w-full bg-transparent text-sm outline-none placeholder:text-muted-foreground disabled:opacity-50 resize-none max-h-32 min-h-6"
style={{ fieldSizing: 'content' } as React.CSSProperties}
/>