Change: adjust MySpeed blocks order (#5881)

This commit is contained in:
Darkangeel_hd 2025-10-17 03:42:33 +02:00 committed by GitHub
parent 4457baffa5
commit 2f48d21bfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,14 +33,6 @@ export default function Component({ service }) {
return (
<Container service={service}>
<Block
label="myspeed.ping"
value={t("common.ms", {
value: data[0].ping,
style: "unit",
unit: "millisecond",
})}
/>
<Block
label="myspeed.download"
value={t("common.bitrate", {
@ -55,6 +47,14 @@ export default function Component({ service }) {
decimals: 2,
})}
/>
<Block
label="myspeed.ping"
value={t("common.ms", {
value: data[0].ping,
style: "unit",
unit: "millisecond",
})}
/>
</Container>
);
}