Fix padding on last paragraph in messages (#8491)

Co-authored-by: openhands <openhands@all-hands.dev>
Co-authored-by: Xingyao Wang <xingyao@all-hands.dev>
This commit is contained in:
Robert Brennan 2025-05-14 06:24:21 -04:00 committed by GitHub
parent 67d438ea4f
commit c36cbf6543
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,5 +7,5 @@ export function paragraph({
}: React.ClassAttributes<HTMLParagraphElement> &
React.HTMLAttributes<HTMLParagraphElement> &
ExtraProps) {
return <p className="pb-[10px]">{children}</p>;
return <p className="pb-[10px] last:pb-0">{children}</p>;
}