From 132c49e400954f21463a7015482743f66c759ca5 Mon Sep 17 00:00:00 2001 From: Apollo Date: Wed, 13 May 2026 14:09:42 +0000 Subject: [PATCH] fix(developer-hub): hide selected lazer chains in docs --- apps/developer-hub/src/components/LazerTable/index.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/developer-hub/src/components/LazerTable/index.tsx b/apps/developer-hub/src/components/LazerTable/index.tsx index 64bf2e8acd..e278c15c24 100644 --- a/apps/developer-hub/src/components/LazerTable/index.tsx +++ b/apps/developer-hub/src/components/LazerTable/index.tsx @@ -21,7 +21,11 @@ type LazerDeployment = { }; // Chains we never want to show in the docs (e.g. internal devnets). -const HIDDEN_CHAIN_IDS = new Set(["ethereal_devnet"]); +const HIDDEN_CHAIN_IDS = new Set([ + "ethereal_devnet", + "megaeth", + "polynomial", +]); // Community-maintained EVM chain registry (https://github.com/ethereum-lists/chains). // Same data source as chainlist.org. Re-fetched at most once per day per build.