From 5690c9d3752fd15343b1b883eb8ede276ba78984 Mon Sep 17 00:00:00 2001 From: Mistral Vibe Date: Tue, 7 Apr 2026 14:22:14 +0000 Subject: [PATCH] fix: remove redundant time label from media controls - Remove extra time display above buttons (already shown in waveform) - Simplify transport section structure - Keep buttons centered for clean UI --- web/src/pages/SongPage.tsx | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/web/src/pages/SongPage.tsx b/web/src/pages/SongPage.tsx index 1035bfb..ca77c37 100644 --- a/web/src/pages/SongPage.tsx +++ b/web/src/pages/SongPage.tsx @@ -561,21 +561,12 @@ export function SongPage() {
- {/* Time display - moved above buttons */} - - {formatTime(currentTime)} - {isReady && duration > 0 ? ` / ${formatTime(duration)}` : ""} - - - {/* Button group - centered */} -
{/* Skip back */} seekTo(Math.max(0, currentTime - 30))} title="−30s"> @@ -609,8 +600,6 @@ export function SongPage() { seekTo(currentTime + 30)} title="+30s"> -
-