🐛 Fix wrong tool call progress status

This commit is contained in:
2025-11-15 23:22:33 +08:00
parent f14da0d3a2
commit 429b966c4b

View File

@@ -35,7 +35,7 @@ class FunctionCallsSection extends HookWidget {
}
if (functionCallName.isEmpty) functionCallName = 'unknown'.tr();
final showSpinner = !(isStreaming && !isFinish);
final showSpinner = isStreaming && !isFinish;
final isExpanded = useState(false);