mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 16:57:46 +00:00
Fix build break (tool -> tools).
- Without this we'd get a TS1261 about the name "tool" only differeing from "Tool" (the class) by case.
This commit is contained in:
@@ -2,7 +2,7 @@ import React from 'react';
|
||||
import { Box, Text } from 'ink';
|
||||
import Spinner from 'ink-spinner';
|
||||
import { ToolCallStatus } from '../../types.js';
|
||||
import { ToolResultDisplay } from '../../../tools/tool.js';
|
||||
import { ToolResultDisplay } from '../../../tools/tools.js';
|
||||
import DiffRenderer from './DiffRenderer.js';
|
||||
import { MarkdownRenderer } from '../../utils/MarkdownRenderer.js';
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { ToolResultDisplay } from '../tools/tool.js';
|
||||
import { ToolResultDisplay } from "../tools/tools.js";
|
||||
|
||||
export enum ToolCallStatus {
|
||||
Pending,
|
||||
|
||||
Reference in New Issue
Block a user