chore(play): remove session-id readout and decorative footer mark

The session-id slice shown in the play header was an opaque timestamp
that reads as noise to players. The footer's "Ⅰ · Ⅰ" was a leftover
decorative mark after its sibling controls were moved above the canvas.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
yuanzonghao
2026-06-03 16:00:16 +08:00
parent b5f73d8082
commit 3fa3da5378
-9
View File
@@ -938,10 +938,6 @@ function PlayInner() {
<span> · {String(sceneCount).padStart(3, "0")} · </span>
<span className="text-clay-300">·</span>
<span>{String(beatCount).padStart(3, "0")} · </span>
<span className="text-clay-300">·</span>
<span className="hidden sm:inline truncate max-w-[180px]">
{session?.id.slice(2, 14) ?? "—"}
</span>
</div>
</header>
@@ -999,11 +995,6 @@ function PlayInner() {
)}
</div>
</main>
<footer className="px-5 md:px-12 pb-6 flex items-center justify-center">
{/* 演示 / 静音入口已搬到画面正上方左右两侧;footer 仅留中间的「Ⅰ · Ⅰ」标记 */}
<div className="text-[9px] smallcaps text-clay-400 num"> · </div>
</footer>
</div>
);
}