Skip to content

Commit

Permalink
fix: match size with the output
Browse files Browse the repository at this point in the history
  • Loading branch information
weilirs committed Nov 12, 2024
1 parent 76b58c5 commit 9f66249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/WritingAssistant/ConversationHistory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const ConversationHistory: React.FC<ConversationHistoryProps> = ({
: history.slice(currentIndex, currentIndex + 2)

return (
<div className="mt-4 flex flex-col" style={{ height: markdownMaxHeight }}>
<div className="mt-4 flex flex-col" style={{ maxHeight: markdownMaxHeight }}>
<div className="mb-2 flex justify-between">
<button
onClick={() => onNavigate('prev')}
Expand Down

0 comments on commit 9f66249

Please sign in to comment.