console: drop the "you" under the next-step button

The banner already says whose turn it is.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
Yashas 2026-09-10 11:44:54 +05:30
parent 97c792a2fc
commit 54333ef847
2 changed files with 5 additions and 2 deletions

View File

@ -646,7 +646,10 @@ export default function Lead() {
onClick={() => setOpen(open === a.uid ? null : a.uid)}
>
<strong>{a.label}</strong>
<span>{a.by}</span>
{/* The banner above already says it is your turn; "you"
under the button repeated it. Only a by-line that names
someone else is worth the line. */}
{a.by && a.by !== 'you' ? <span>{a.by}</span> : null}
</button>
))}
</div>

View File

@ -309,7 +309,7 @@
/* Next step */
.step { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.step__btn {
.step__btn { justify-content: center;
display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
font: inherit; text-align: left; cursor: pointer;
padding: 12px 18px; border-radius: var(--r-sm); border: 1px solid var(--zk-navy); background: var(--zk-navy); color: #fff;