diff --git a/src/components/download/MirrorList.tsx b/src/components/download/MirrorList.tsx
index f2d8229c..b721a898 100644
--- a/src/components/download/MirrorList.tsx
+++ b/src/components/download/MirrorList.tsx
@@ -10,33 +10,33 @@ interface MirrorListProps {
export function MirrorList({ mirrors, onSelect }: MirrorListProps) {
return (
-
+
{mirrors.map((mirror, index) => (
-
-
+
+
-
{mirror.name}
-
{mirror.location}
+
{mirror.name}
+
{mirror.location}
-
-
-
+
+
+
{formatSpeed(mirror.speed)}
@@ -45,4 +45,4 @@ export function MirrorList({ mirrors, onSelect }: MirrorListProps) {
))}
);
-}
\ No newline at end of file
+}