File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import * as React from 'react'
2+
3+ /**
4+ * Internal-only component. Shows experiment enrollment status for internal
5+ * users. Stubbed — returns null in non-internal builds.
6+ */
7+ export function ExperimentEnrollmentNotice ( ) : React . ReactNode {
8+ return null
9+ }
Original file line number Diff line number Diff line change 1+ import * as React from 'react'
2+
3+ /**
4+ * Internal-only component. Displays a warning when feature-gate overrides
5+ * (CLAUDE_INTERNAL_FC_OVERRIDES) are active. Stubbed — returns null in
6+ * non-internal builds.
7+ */
8+ export function GateOverridesWarning ( ) : React . ReactNode {
9+ return null
10+ }
Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ import {
4949import { EmergencyTip } from './EmergencyTip.js'
5050import { VoiceModeNotice } from './VoiceModeNotice.js'
5151import { Opus1mMergeNotice } from './Opus1mMergeNotice.js'
52+ import { GateOverridesWarning } from './GateOverridesWarning.js'
53+ import { ExperimentEnrollmentNotice } from './ExperimentEnrollmentNotice.js'
5254import { feature } from 'bun:bundle'
5355
5456// Conditional require so ChannelsNotice.tsx tree-shakes when both flags are
You can’t perform that action at this time.
0 commit comments