diff --git a/src/widgets/torrent/TorrentQueueItem.tsx b/src/widgets/torrent/TorrentQueueItem.tsx
index 991daef23..6ec0c1a71 100644
--- a/src/widgets/torrent/TorrentQueueItem.tsx
+++ b/src/widgets/torrent/TorrentQueueItem.tsx
@@ -73,7 +73,7 @@ export const BitTorrrentQueueItem = ({ torrent, app }: TorrentQueueItemProps) =>
- {humanFileSize(size)}
+ {humanFileSize(size, false)}
|
{width > MIN_WIDTH_MOBILE && (
@@ -188,15 +188,15 @@ const TorrentQueuePopover = ({ torrent, app }: TorrentQueueItemProps) => {
}>
{t('card.popover.metrics.totalSelectedSize', {
- totalSize: humanFileSize(torrent.totalSelected),
+ totalSize: humanFileSize(torrent.totalSelected, false),
})}
}>
- {humanFileSize(torrent.totalDownloaded)}
+ {humanFileSize(torrent.totalDownloaded, false)}
- {humanFileSize(torrent.totalUploaded)}
+ {humanFileSize(torrent.totalUploaded, false)}
}>
|