claude-scope 0.6.16 → 0.6.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/claude-scope.cjs +1 -1
- package/package.json +1 -1
package/dist/claude-scope.cjs
CHANGED
|
@@ -1517,7 +1517,7 @@ var activeToolsStyles = {
|
|
|
1517
1517
|
for (const tool of data.running) {
|
|
1518
1518
|
allToolNames.add(tool.name);
|
|
1519
1519
|
}
|
|
1520
|
-
for (const [name] of data.completed) {
|
|
1520
|
+
for (const [name] of data.completed.slice(0, 3)) {
|
|
1521
1521
|
allToolNames.add(name);
|
|
1522
1522
|
}
|
|
1523
1523
|
const completedMap = new Map(data.completed);
|