From 832276e80e5d04bc675cebcd84451dbb5f29ed8c Mon Sep 17 00:00:00 2001 From: Tagaishi Date: Thu, 2 Nov 2023 11:35:17 +0100 Subject: [PATCH] Revert "Fix torrent speeds unit" This reverts commit b60be13ab9761c656e7728bb6c7e9b29c7cfb245. --- src/widgets/torrent/TorrentQueueItem.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/torrent/TorrentQueueItem.tsx b/src/widgets/torrent/TorrentQueueItem.tsx index 6c9b4aa7a..74600ca87 100644 --- a/src/widgets/torrent/TorrentQueueItem.tsx +++ b/src/widgets/torrent/TorrentQueueItem.tsx @@ -83,14 +83,14 @@ export const BitTorrentQueueItem = ({ torrent, width, app }: TorrentQueueItemPro {width > MIN_WIDTH_MOBILE && ( - {downloadSpeed > 0 ? `${downloadSpeed.toFixed(1)} MB/s` : '-'} + {downloadSpeed > 0 ? `${downloadSpeed.toFixed(1)} Mb/s` : '-'} )} {width > MIN_WIDTH_MOBILE && ( - {uploadSpeed > 0 ? `${uploadSpeed.toFixed(1)} MB/s` : '-'} + {uploadSpeed > 0 ? `${uploadSpeed.toFixed(1)} Mb/s` : '-'} )}