diff --git a/services/web/frontend/js/features/source-editor/components/math-preview-tooltip.tsx b/services/web/frontend/js/features/source-editor/components/math-preview-tooltip.tsx index 22d0c56e69..23ae04ca18 100644 --- a/services/web/frontend/js/features/source-editor/components/math-preview-tooltip.tsx +++ b/services/web/frontend/js/features/source-editor/components/math-preview-tooltip.tsx @@ -29,7 +29,6 @@ import { Dropdown as BS3Dropdown, MenuItem as BS3MenuItem, } from 'react-bootstrap' -import BetaBadgeIcon from '@/shared/components/beta-badge-icon' const MathPreviewTooltipContainer: FC = () => { const state = useCodeMirrorStateContext() @@ -96,8 +95,6 @@ const MathPreviewTooltip: FC<{ mathContent: HTMLDivElement }> = ({ <>
- - @@ -211,18 +208,4 @@ const MathPreviewTooltip: FC<{ mathContent: HTMLDivElement }> = ({ ) } -// Temporary SplitTest badge for just this component that always shows -// as in beta and doesn't have a tooltip -const CustomSplitTestBadge: FC = () => { - return ( - - - - ) -} - export default MathPreviewTooltipContainer