Skip to content

Commit 5aad266

Browse files
feat: enhance chat history component with scrollable recent sessions
1 parent e0a1c5d commit 5aad266

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/workspace/components/chat/chat-history.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export function ChatHistory({ onLoadSession, onClearHistory, currentSessionId }:
112112
</div>
113113
</div>
114114
) : (
115-
<div className="h-full">
115+
<div className="h-full max-h-64 overflow-y-auto">
116116
<div className="p-2">
117117
{recentSessions.map((session) => (
118118
<div

0 commit comments

Comments
 (0)