1234567891011121314 |
- import type {BadgeType} from 'sentry/components/badge/featureBadge';
- import {t} from 'sentry/locale';
- export const MODULE_TITLE = t('Queues');
- export const DESTINATION_TITLE = t('Destination Summary');
- export const RELEASE_LEVEL: BadgeType = 'alpha';
- export const releaseLevelAsBadgeProps = {
- isAlpha: (RELEASE_LEVEL as BadgeType) === 'alpha',
- isBeta: (RELEASE_LEVEL as BadgeType) === 'beta',
- isNew: (RELEASE_LEVEL as BadgeType) === 'new',
- };
|