From e3faaafaca5f69c7941ea2165380a0f9564f5fe3 Mon Sep 17 00:00:00 2001 From: Evan Purkhiser Date: Mon, 17 Nov 2025 12:54:38 -0500 Subject: [PATCH] ref(crons): Allow unmuting monitor envs when monitor "muted" Part of [NEW-564: There needs to be some way to mute the entire cron detector](https://linear.app/getsentry/issue/NEW-564/there-needs-to-be-some-way-to-mute-the-entire-cron-detector) Now that `is_muted` of a monitor is computed, we need to allow unmuting environments when they are all muted. --- .../insights/crons/components/overviewTimeline/overviewRow.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/static/app/views/insights/crons/components/overviewTimeline/overviewRow.tsx b/static/app/views/insights/crons/components/overviewTimeline/overviewRow.tsx index 4da6aa8065227a..d552d409fb2576 100644 --- a/static/app/views/insights/crons/components/overviewTimeline/overviewRow.tsx +++ b/static/app/views/insights/crons/components/overviewTimeline/overviewRow.tsx @@ -152,8 +152,6 @@ export function OverviewRow({ ? t('Unmute Environment') : t('Mute Environment'), key: 'mute', - details: monitor.isMuted ? t('Monitor is muted') : undefined, - disabled: monitor.isMuted, onAction: () => onToggleMuteEnvironment(env, !isMuted), }), ]