From c4d2abdbc6ddaf6a80f41405e2ad78441f42efc9 Mon Sep 17 00:00:00 2001 From: Katalina Okano Date: Thu, 29 Jun 2023 15:33:13 -0400 Subject: [PATCH] add back ceres next cont --- app/components/index-world.tsx | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/app/components/index-world.tsx b/app/components/index-world.tsx index 1c4ba4b..c075f93 100644 --- a/app/components/index-world.tsx +++ b/app/components/index-world.tsx @@ -29,8 +29,7 @@ export const IndexWorld = ({ metagame, population }: IndexWorldProps) => { new Date(a.locked_since ?? Date.now()).getTime() - new Date(b.locked_since ?? Date.now()).getTime() )[0]; - const nextZoneStrings = - worldId !== 2000 ? zones[nextZone.id] : zones["default"]; + const nextZoneStrings = zones[nextZone.id]; return (
@@ -89,20 +88,7 @@ export const IndexWorld = ({ metagame, population }: IndexWorldProps) => { } as any } >
-
- {worldId !== 2000 ? ( - nextZoneStrings.name - ) : ( - <> - - ??? - - - )} -
+
{nextZoneStrings.name}
)}