We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a966489 commit 84ca20aCopy full SHA for 84ca20a
1 file changed
frontend/app/aipanel/aimessage.tsx
@@ -49,14 +49,12 @@ const AIThinking = memo(
49
)}
50
{message && <span className="text-sm text-gray-400">{message}</span>}
51
</div>
52
- {displayText && (
53
- <div
54
- ref={scrollRef}
55
- className="text-sm text-gray-500 overflow-y-auto max-h-[3lh] max-w-[600px] pl-9"
56
- >
57
- {displayText}
58
- </div>
59
- )}
+ <div
+ ref={scrollRef}
+ className="text-sm text-gray-500 overflow-y-auto h-[3lh] max-w-[600px] pl-9"
+ >
+ {displayText}
+ </div>
60
61
);
62
}
0 commit comments