Skip to content

Commit 1e4f197

Browse files
committed
fix(chat): replace the turn divider rule with spacing (bubbles already separate turns)
1 parent 09b875b commit 1e4f197

1 file changed

Lines changed: 2 additions & 9 deletions

File tree

frontend/workspace/src/pages/session.tsx

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -435,16 +435,9 @@ export default function Page(): JSX.Element {
435435
container: "w-full px-4 md:px-8",
436436
}}
437437
/>
438+
{/* Space, not a rule — the bubbles already separate turns. */}
438439
<Show when={index() < turnMessages().length - 1}>
439-
<div class="w-full px-4 md:px-8 pt-2 pb-1">
440-
<div
441-
style={{
442-
height: "1px",
443-
background: "var(--color-border)",
444-
opacity: 0.6,
445-
}}
446-
/>
447-
</div>
440+
<div style={{ height: "22px" }} />
448441
</Show>
449442
</div>
450443
)}

0 commit comments

Comments
 (0)