diff options
| author | Tae Hyung Kim <[email protected]> | 2025-05-07 12:57:19 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-07 12:57:19 -0700 |
| commit | 0a7f461d392dbf887ab562e38a2e827e124bfa80 (patch) | |
| tree | cb0c70da1fbd57630da59c14b69c5f7ea9d1d92b /packages/cli/src/ui/hooks/atCommandProcessor.ts | |
| parent | 358281f0fda7ef4045ca2e9d827a45b56f949467 (diff) | |
Fix flicker in iterm2 (#266)
Diffstat (limited to 'packages/cli/src/ui/hooks/atCommandProcessor.ts')
| -rw-r--r-- | packages/cli/src/ui/hooks/atCommandProcessor.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/cli/src/ui/hooks/atCommandProcessor.ts b/packages/cli/src/ui/hooks/atCommandProcessor.ts index 50e81589..5ffa5383 100644 --- a/packages/cli/src/ui/hooks/atCommandProcessor.ts +++ b/packages/cli/src/ui/hooks/atCommandProcessor.ts @@ -24,7 +24,6 @@ interface HandleAtCommandParams { query: string; config: Config; addItem: UseHistoryManagerReturn['addItem']; - updateItem: UseHistoryManagerReturn['updateItem']; setDebugMessage: React.Dispatch<React.SetStateAction<string>>; messageId: number; } @@ -88,7 +87,7 @@ function parseAtCommand( export async function handleAtCommand({ query, config, - addItem: addItem, + addItem, setDebugMessage, messageId: userMessageTimestamp, }: HandleAtCommandParams): Promise<HandleAtCommandResult> { |
