Skip to content

Commit b75a53a

Browse files
committed
updated icons
1 parent 50ce2a6 commit b75a53a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

static/app/components/badge/alertBadge.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import {
66
IconEllipsis,
77
IconExclamation,
88
IconFire,
9-
IconHappy,
109
IconIssues,
10+
IconShow,
1111
} from 'sentry/icons';
1212
import type {SVGIconProps} from 'sentry/icons/svgIcon';
1313
import {t} from 'sentry/locale';
@@ -63,11 +63,11 @@ function AlertBadge({status, withText, isIssue, activationStatus}: Props) {
6363

6464
if (activationStatus === ActivationStatus.WAITING) {
6565
statusText = t('Ready');
66-
Icon = IconHappy;
66+
Icon = IconEllipsis;
6767
color = 'purple300';
6868
} else if (activationStatus === ActivationStatus.MONITORING) {
6969
statusText = t('Monitoring');
70-
Icon = IconEllipsis;
70+
Icon = IconShow;
7171
}
7272

7373
return (

0 commit comments

Comments
 (0)