fix: revert to 1 decimal place for fader labels

Changed back from .toFixed(2) to .toFixed(1) while keeping the fixed
widths to prevent component movement.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-19 01:02:17 +01:00
parent 33be21295e
commit f7a7c4420c
2 changed files with 4 additions and 4 deletions

View File

@@ -168,7 +168,7 @@ export function TrackFader({
valueDb > -6 ? 'text-yellow-500' :
'text-green-500'
)}>
{valueDb > -60 ? `${valueDb.toFixed(2)}` : '-∞'}
{valueDb > -60 ? `${valueDb.toFixed(1)}` : '-∞'}
</div>
</div>
</div>