diff options
| author | Victor May <[email protected]> | 2025-08-20 15:51:31 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-20 19:51:31 +0000 |
| commit | 4642de2a5ceaf264ce3238accc1142aec4661db4 (patch) | |
| tree | 3d8ea5c32f24f32ac80ee977282f9a4a147102c1 /packages/cli/src/ui/hooks/atCommandProcessor.ts | |
| parent | 52e340a11bc6c9ca10674799fa784566d4bbd538 (diff) | |
Fixing at command race condition (#6663)
Diffstat (limited to 'packages/cli/src/ui/hooks/atCommandProcessor.ts')
| -rw-r--r-- | packages/cli/src/ui/hooks/atCommandProcessor.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/packages/cli/src/ui/hooks/atCommandProcessor.ts b/packages/cli/src/ui/hooks/atCommandProcessor.ts index 85ad6f6f..3d139db8 100644 --- a/packages/cli/src/ui/hooks/atCommandProcessor.ts +++ b/packages/cli/src/ui/hooks/atCommandProcessor.ts @@ -137,12 +137,9 @@ export async function handleAtCommand({ ); if (atPathCommandParts.length === 0) { - addItem({ type: 'user', text: query }, userMessageTimestamp); return { processedQuery: [{ text: query }], shouldProceed: true }; } - addItem({ type: 'user', text: query }, userMessageTimestamp); - // Get centralized file discovery service const fileDiscovery = config.getFileService(); |
