MCPcopy Create free account
hub / github.com/oboard/claude-code-rev / teammateModelDisplayString

Function teammateModelDisplayString

src/components/Settings/Config.tsx:1790–1796  ·  view source on GitHub ↗
(value: string | null | undefined)

Source from the content-addressed store, hash-verified

1788 </Box>;
1789}
1790function teammateModelDisplayString(value: string | null | undefined): string {
1791 if (value === undefined) {
1792 return modelDisplayString(getHardcodedTeammateModelFallback());
1793 }
1794 if (value === null) return "Default (leader's model)";
1795 return modelDisplayString(value);
1796}
1797const THEME_LABELS: Record<string, string> = {
1798 auto: 'Auto (match terminal)',
1799 dark: 'Dark mode',

Callers 1

ConfigFunction · 0.85

Calls 2

modelDisplayStringFunction · 0.85

Tested by

no test coverage detected