diff --git a/crates/librqbit/webui/src/rqbit-web.tsx b/crates/librqbit/webui/src/rqbit-web.tsx index f9f7320..74950b5 100644 --- a/crates/librqbit/webui/src/rqbit-web.tsx +++ b/crates/librqbit/webui/src/rqbit-web.tsx @@ -199,11 +199,8 @@ const Speed: React.FC<{ statsResponse: TorrentStats }> = ({ statsResponse }) => return <> {!statsResponse.finished &&

↓ {statsResponse.live.download_speed.human_readable}

}

↑ {statsResponse.live.upload_speed.human_readable}

+ {statsResponse.live.snapshot.uploaded_bytes > 0 &&

Uploaded {formatBytes(statsResponse.live.snapshot.uploaded_bytes)}

} - - if (statsResponse.finished) { - return Completed; - } } const TorrentRow: React.FC<{