diff --git a/frontend/src/pages/ServerDetail.jsx b/frontend/src/pages/ServerDetail.jsx
index d2a7786..388e7c1 100644
--- a/frontend/src/pages/ServerDetail.jsx
+++ b/frontend/src/pages/ServerDetail.jsx
@@ -431,11 +431,9 @@ const ServerDetail = ({ isMobile = false }) => {
- {server.mods.map((mod, index) => (
+ {[...server.mods].sort((a, b) => a.id.localeCompare(b.id)).map((mod, index) => (
-
-
- {mod.id}
-
+ {mod.id}
{mod.version}
))}
@@ -457,11 +455,9 @@ const ServerDetail = ({ isMobile = false }) => {
- {server.mods.map((mod, index) => (
+ {[...server.mods].sort((a, b) => a.id.localeCompare(b.id)).map((mod, index) => (
-
-
- {mod.id}
-
+ {mod.id}
{mod.version}
))}