Files
claude-code/src/components/LogoV2/GateOverridesWarning.tsx
2026-05-01 21:39:30 +08:00

11 lines
289 B
TypeScript

import * as React from 'react';
/**
* Internal-only component. Displays a warning when feature-gate overrides
* (CLAUDE_INTERNAL_FC_OVERRIDES) are active. Stubbed — returns null in
* non-internal builds.
*/
export function GateOverridesWarning(): React.ReactNode {
return null;
}