We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bece312 commit 80cdb93Copy full SHA for 80cdb93
web/src/modules/song/components/SongDetails.tsx
@@ -49,7 +49,7 @@ export const SongDetails = ({ song }: SongDetailsProps) => {
49
const stats = song.stats;
50
51
// Pre-compute complex values
52
- const formattedFileSize = `${(song.fileSize / 1024).toFixed(2)} kB`;
+ const formattedFileSize = `${(song.fileSize / 1024).toFixed(0)} kB`;
53
const formattedDuration = formatDuration(stats.duration);
54
const formattedTimeSpent = formatTimeSpent(stats.minutesSpent);
55
0 commit comments