diff --git a/frontend/src/resources/server/index.tsx b/frontend/src/resources/server/index.tsx
index 83971e32a..3c060ee86 100644
--- a/frontend/src/resources/server/index.tsx
+++ b/frontend/src/resources/server/index.tsx
@@ -53,7 +53,7 @@ export const ServerCard = ({ id }: { id: string }) => {
>
-
+
diff --git a/frontend/src/resources/server/util.tsx b/frontend/src/resources/server/util.tsx
index e8d015afe..8c182f5f7 100644
--- a/frontend/src/resources/server/util.tsx
+++ b/frontend/src/resources/server/util.tsx
@@ -47,11 +47,17 @@ export const ServerSpecs = ({ server_id }: { server_id: string }) => {
);
};
-export const ServerRegion = () => {
+export const ServerRegion = ({
+ serverId,
+}: {
+ serverId: string | undefined;
+}) => {
+ const servers = useRead("ListServers", {}).data;
+ const server = servers?.find((s) => s.id === serverId);
return (
- server.region
+ {server?.region || "region unknown"}
);
};