mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: remove duplicate cache display in task header (#7443)
This commit is contained in:
parent
ff1f4f0398
commit
3528f51304
1 changed files with 0 additions and 13 deletions
|
|
@ -264,19 +264,6 @@ const TaskHeader = ({
|
|||
</tr>
|
||||
)}
|
||||
|
||||
{/* Cache size display */}
|
||||
{((typeof cacheReads === "number" && cacheReads > 0) ||
|
||||
(typeof cacheWrites === "number" && cacheWrites > 0)) && (
|
||||
<tr>
|
||||
<th className="font-bold text-left align-top w-1 whitespace-nowrap pl-1 pr-3 h-[24px]">
|
||||
{t("chat:task.cache")}
|
||||
</th>
|
||||
<td className="align-top">
|
||||
{prettyBytes(((cacheReads || 0) + (cacheWrites || 0)) * 4)}
|
||||
</td>
|
||||
</tr>
|
||||
)}
|
||||
|
||||
{/* Size display */}
|
||||
{!!currentTaskItem?.size && currentTaskItem.size > 0 && (
|
||||
<tr>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue