Skip to content

Commit 426316a

Browse files
committed
There was an error about a div being in a paragraph
1 parent 4f9b8d6 commit 426316a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/webapp/app/components/runs/v3/SpanTitle.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ type SpanTitleProps = {
1616

1717
export function SpanTitle(event: SpanTitleProps) {
1818
return (
19-
<div className={cn("flex items-center gap-x-2 overflow-x-hidden", eventTextClassName(event))}>
19+
<span className={cn("flex items-center gap-x-2 overflow-x-hidden", eventTextClassName(event))}>
2020
<span className="truncate">{event.message}</span>{" "}
2121
<SpanAccessory accessory={event.style.accessory} size={event.size} />
22-
</div>
22+
</span>
2323
);
2424
}
2525

0 commit comments

Comments
 (0)