diff --git a/explorer/src/providers/transactions/index.tsx b/explorer/src/providers/transactions/index.tsx index 344f5c2e71..50eb029569 100644 --- a/explorer/src/providers/transactions/index.tsx +++ b/explorer/src/providers/transactions/index.tsx @@ -85,9 +85,11 @@ export async function fetchTransactionStatus( try { blockTime = await connection.getBlockTime(value.slot); } catch (error) { - Sentry.captureException(error, { - tags: { slot: `${value.slot}`, url }, - }); + if (cluster === Cluster.MainnetBeta) { + Sentry.captureException(error, { + tags: { slot: `${value.slot}` }, + }); + } } let timestamp: Timestamp = blockTime !== null ? blockTime : "unavailable";