Skip to content

Commit d6bfc34

Browse files
fix: 修复 ant 模式
1 parent 042e186 commit d6bfc34

3 files changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
}

src/components/LogoV2/LogoV2.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ import {
4949
import { EmergencyTip } from './EmergencyTip.js'
5050
import { VoiceModeNotice } from './VoiceModeNotice.js'
5151
import { Opus1mMergeNotice } from './Opus1mMergeNotice.js'
52+
import { GateOverridesWarning } from './GateOverridesWarning.js'
53+
import { ExperimentEnrollmentNotice } from './ExperimentEnrollmentNotice.js'
5254
import { feature } from 'bun:bundle'
5355

5456
// Conditional require so ChannelsNotice.tsx tree-shakes when both flags are

0 commit comments

Comments
 (0)