- {formatFileSize(soundboardStatistics.total_size)}
+
+ {(() => {
+ const sizeObj = formatSizeObject(soundboardStatistics.total_size, true)
+ return (
+ <>
+ {sizeObj.unit}
+ >
+ )
+ })()}
+
Original + normalized files
@@ -329,7 +339,7 @@ export function DashboardPage() {
- {trackStatistics.track_count}
+
Extracted audio tracks
@@ -342,7 +352,7 @@ export function DashboardPage() {
- {trackStatistics.total_play_count}
+
All-time play count
@@ -368,7 +378,16 @@ export function DashboardPage() {
- {formatFileSize(trackStatistics.total_size)}
+
+ {(() => {
+ const sizeObj = formatSizeObject(trackStatistics.total_size, true)
+ return (
+ <>
+ {sizeObj.unit}
+ >
+ )
+ })()}
+
Original + normalized files