Skip to content

Commit

Permalink
chore(issue-stream): Remove tooltip for Unhandled (#79385)
Browse files Browse the repository at this point in the history
This tooltip doesn't say much and probably isn't providing any value
  • Loading branch information
malwilley authored Oct 18, 2024
1 parent e4b2418 commit deff4d5
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions static/app/components/group/inboxBadges/unhandledTag.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
import styled from '@emotion/styled';

import {Tooltip} from 'sentry/components/tooltip';
import {IconFatal} from 'sentry/icons';
import {t} from 'sentry/locale';
import {useHasStreamlinedUI} from 'sentry/views/issueDetails/utils';

function UnhandledTag() {
const hasStreamlinedUI = useHasStreamlinedUI();
return (
<Tooltip skipWrapper title={t('An unhandled error was detected in this Issue.')}>
<UnhandledTagWrapper>
{!hasStreamlinedUI && <StyledIconFatal size="xs" color="errorText" />}
{t('Unhandled')}
</UnhandledTagWrapper>
</Tooltip>
<UnhandledTagWrapper>
{!hasStreamlinedUI && <StyledIconFatal size="xs" color="errorText" />}
{t('Unhandled')}
</UnhandledTagWrapper>
);
}

Expand Down

0 comments on commit deff4d5

Please sign in to comment.