mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 06:15:51 +00:00
11 lines
289 B
TypeScript
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;
|
|
}
|