From ba5faa25822bc6ceca79e8f92acdad4910be236b Mon Sep 17 00:00:00 2001 From: joeaba <77398477+joeaba@users.noreply.github.com> Date: Sat, 22 Jan 2022 15:38:14 -0500 Subject: [PATCH] update explorer's mainnet-beta endpoint --- explorer/src/providers/cluster.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer/src/providers/cluster.tsx b/explorer/src/providers/cluster.tsx index f583304a1b..5081698730 100644 --- a/explorer/src/providers/cluster.tsx +++ b/explorer/src/providers/cluster.tsx @@ -65,7 +65,7 @@ export function clusterUrl(cluster: Cluster, customUrl: string): string { case Cluster.Devnet: return DEVNET_URL.replace("api", "explorer-api"); case Cluster.MainnetBeta: - return MAINNET_BETA_URL.replace("api", "explorer-api"); + return MAINNET_BETA_URL; case Cluster.Testnet: return TESTNET_URL.replace("api", "explorer-api"); case Cluster.Custom: