summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/hooks/useGeminiStream.ts
diff options
context:
space:
mode:
authorJacob Richman <[email protected]>2025-05-02 14:39:39 -0700
committerGitHub <[email protected]>2025-05-02 14:39:39 -0700
commit0556358560f065dec5e35fd5b0544b18ddcc4495 (patch)
tree8ca5ca20991b2950b2360839d35b53d3c03f34ed /packages/cli/src/ui/hooks/useGeminiStream.ts
parent69d1c644d9034138ed7418f4450230756e84ad93 (diff)
Cleanup low value comments. (#248)
Diffstat (limited to 'packages/cli/src/ui/hooks/useGeminiStream.ts')
-rw-r--r--packages/cli/src/ui/hooks/useGeminiStream.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/cli/src/ui/hooks/useGeminiStream.ts b/packages/cli/src/ui/hooks/useGeminiStream.ts
index 9e2901ec..bd2b617c 100644
--- a/packages/cli/src/ui/hooks/useGeminiStream.ts
+++ b/packages/cli/src/ui/hooks/useGeminiStream.ts
@@ -27,12 +27,12 @@ import {
IndividualToolCallDisplay,
ToolCallStatus,
} from '../types.js';
-import { isAtCommand } from '../utils/commandUtils.js'; // Import the @ command checker
+import { isAtCommand } from '../utils/commandUtils.js';
import { useSlashCommandProcessor } from './slashCommandProcessor.js';
import { useShellCommandProcessor } from './shellCommandProcessor.js';
import { usePassthroughProcessor } from './passthroughCommandProcessor.js';
-import { handleAtCommand } from './atCommandProcessor.js'; // Import the @ command handler
-import { findSafeSplitPoint } from '../utils/markdownUtilities.js'; // Import the split point finder
+import { handleAtCommand } from './atCommandProcessor.js';
+import { findSafeSplitPoint } from '../utils/markdownUtilities.js';
const addHistoryItem = (
setHistory: React.Dispatch<React.SetStateAction<HistoryItem[]>>,