diff --git a/apps/insights/src/components/PriceComponentDrawer/index.tsx b/apps/insights/src/components/PriceComponentDrawer/index.tsx
index aa7862043a..a1d02a6b59 100644
--- a/apps/insights/src/components/PriceComponentDrawer/index.tsx
+++ b/apps/insights/src/components/PriceComponentDrawer/index.tsx
@@ -93,12 +93,14 @@ export const PriceComponentDrawer = ({
         }
         />
         }
         />
          {
   const { slug } = await params;
   const symbol = decodeURIComponent(slug);
-  const [feeds, pythnetPublishers, pythtestConformancePublishers] =
-    await Promise.all([
-      getFeeds(Cluster.Pythnet),
-      getPublishers(Cluster.Pythnet, symbol),
-      getPublishers(Cluster.PythtestConformance, symbol),
-    ]);
+  const [
+    feeds,
+    pythnetPublishers, // , pythtestConformancePublishers
+  ] = await Promise.all([
+    getFeeds(Cluster.Pythnet),
+    getPublishers(Cluster.Pythnet, symbol),
+    // getPublishers(Cluster.PythtestConformance, symbol),
+  ]);
   const feed = feeds.find((feed) => feed.symbol === symbol);
-  const publishers = [...pythnetPublishers, ...pythtestConformancePublishers];
+  // const publishers = [...pythnetPublishers, ...pythtestConformancePublishers];
+  const publishers = [...pythnetPublishers];
   const metricsTime = pythnetPublishers.find(
     (publisher) => publisher.ranking !== undefined,
   )?.ranking?.time;