diff --git a/static/app/components/core/badge/featureBadge.figma.tsx b/static/app/components/core/badge/featureBadge.figma.tsx
index d65120e931e1..d386f13f365e 100644
--- a/static/app/components/core/badge/featureBadge.figma.tsx
+++ b/static/app/components/core/badge/featureBadge.figma.tsx
@@ -20,6 +20,7 @@ figma.connect(
beta: 'beta',
new: 'new',
experimental: 'experimental',
+ debug: 'debug',
}),
},
example: props => ,
diff --git a/static/app/components/core/badge/featureBadge.tsx b/static/app/components/core/badge/featureBadge.tsx
index dc087f168a4f..d8530c5756cb 100644
--- a/static/app/components/core/badge/featureBadge.tsx
+++ b/static/app/components/core/badge/featureBadge.tsx
@@ -3,6 +3,7 @@ import styled from '@emotion/styled';
import {Tooltip, type TooltipProps} from '@sentry/scraps/tooltip';
import {IconBroadcast} from 'sentry/icons/iconBroadcast';
+import {IconBug} from 'sentry/icons/iconBug';
import {IconLab} from 'sentry/icons/iconLab';
import {t} from 'sentry/locale';
import type {TagVariant} from 'sentry/utils/theme';
@@ -16,6 +17,7 @@ const defaultTitles: Record = {
experimental: t(
'This feature is experimental! Try it out and let us know what you think. No promises!'
),
+ debug: t('This UI is for debugging purposes only'),
};
const variantMap: Record = {
@@ -23,6 +25,7 @@ const variantMap: Record = {
beta: 'warning',
new: 'success',
experimental: 'muted',
+ debug: 'danger',
};
const iconMap: Record = {
@@ -30,10 +33,11 @@ const iconMap: Record = {
beta: ,
new: ,
experimental: ,
+ debug: ,
};
export interface FeatureBadgeProps extends Omit {
- type: 'alpha' | 'beta' | 'new' | 'experimental';
+ type: 'alpha' | 'beta' | 'new' | 'experimental' | 'debug';
tooltipProps?: Partial;
}
diff --git a/static/gsApp/views/seerAutomation/components/projectDetails/nightShift.tsx b/static/gsApp/views/seerAutomation/components/projectDetails/nightShift.tsx
index 152e062b6b73..9d39af94e542 100644
--- a/static/gsApp/views/seerAutomation/components/projectDetails/nightShift.tsx
+++ b/static/gsApp/views/seerAutomation/components/projectDetails/nightShift.tsx
@@ -104,7 +104,7 @@ export function NightShift({canWrite, project}: Props) {
title={
{t('Manually trigger night shift')}
-
+
}
>