diff --git a/frontend/pages/status/index.js b/frontend/pages/status/index.js index c86ca70b..0e9f95bb 100644 --- a/frontend/pages/status/index.js +++ b/frontend/pages/status/index.js @@ -11,8 +11,6 @@ const Status = () => { const { serverListStatusCache } = useStatus(); - console.log(serverListStatusCache?.data); - const moonstreamapiStatus = serverListStatusCache?.data?.filter( (i) => i.name === "moonstream_api" )[0]; @@ -40,9 +38,6 @@ const Status = () => { const dbReplicaServerStatus = serverListStatusCache?.data?.filter( (i) => i.name === "moonstream_database_replica" )[0]; - const unimLeaderboardStatus = serverListStatusCache?.data?.filter( - (i) => i.name === "unim_leaderboard" - )[0]; const StatusRow = (props) => { return ( @@ -261,25 +256,6 @@ const Status = () => { : 0} - -
- - - - {unimLeaderboardStatus?.status_code == 200 - ? healthyStatusText - : downStatusText} - - );