mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-22 16:25:51 +00:00
refactor: 清理 SwitchPanel 未使用变量和导入
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -4,9 +4,6 @@ import type { Creature } from '../types'
|
|||||||
import { getCreatureName } from '../core/creature'
|
import { getCreatureName } from '../core/creature'
|
||||||
|
|
||||||
const CYAN = 'ansi:cyan'
|
const CYAN = 'ansi:cyan'
|
||||||
const GREEN = 'ansi:green'
|
|
||||||
const YELLOW = 'ansi:yellow'
|
|
||||||
const RED = 'ansi:red'
|
|
||||||
const GRAY = 'ansi:white'
|
const GRAY = 'ansi:white'
|
||||||
const WHITE = 'ansi:whiteBright'
|
const WHITE = 'ansi:whiteBright'
|
||||||
|
|
||||||
@@ -22,7 +19,7 @@ export function SwitchPanel({ party, activeId, onSelect, onCancel }: SwitchPanel
|
|||||||
<Box flexDirection="column" borderStyle="round" paddingX={1}>
|
<Box flexDirection="column" borderStyle="round" paddingX={1}>
|
||||||
<Text bold color={CYAN}> 换人 </Text>
|
<Text bold color={CYAN}> 换人 </Text>
|
||||||
{party.map((creature, i) => {
|
{party.map((creature, i) => {
|
||||||
|
const isActive = creature.id === activeId
|
||||||
return (
|
return (
|
||||||
<Box key={creature.id}>
|
<Box key={creature.id}>
|
||||||
<Text>{isActive ? ' ▶ ' : ' '}</Text>
|
<Text>{isActive ? ' ▶ ' : ' '}</Text>
|
||||||
|
|||||||
Reference in New Issue
Block a user