Chore: change MySpeed blocks layout order (#5984)

This commit is contained in:
Darkangeel_hd
2025-11-17 15:57:47 +01:00
committed by GitHub
parent 196c51bf73
commit 6b63cfd491

View File

@@ -24,9 +24,9 @@ export default function Component({ service }) {
if (!data || (data && data.length === 0)) { if (!data || (data && data.length === 0)) {
return ( return (
<Container service={service}> <Container service={service}>
<Block label="myspeed.ping" />
<Block label="myspeed.download" /> <Block label="myspeed.download" />
<Block label="myspeed.upload" /> <Block label="myspeed.upload" />
<Block label="myspeed.ping" />
</Container> </Container>
); );
} }