fix(downloads): upspeed font size wrong (#3214)

This commit is contained in:
Meier Lukas
2025-05-24 18:52:55 +02:00
committed by GitHub
parent 25bd3879db
commit c67916f72e

View File

@@ -538,7 +538,7 @@ export default function DownloadClientsWidget({
sortUndefined: "last",
Cell: ({ cell }) => {
const upSpeed = cell.getValue<ExtendedDownloadClientItem["upSpeed"]>();
return upSpeed && <Text>{humanFileSize(upSpeed, "/s")}</Text>;
return upSpeed && <Text size="xs">{humanFileSize(upSpeed, "/s")}</Text>;
},
},
],