We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff1f4f0 commit 3528f51Copy full SHA for 3528f51
webview-ui/src/components/chat/TaskHeader.tsx
@@ -264,19 +264,6 @@ const TaskHeader = ({
264
</tr>
265
)}
266
267
- {/* Cache size display */}
268
- {((typeof cacheReads === "number" && cacheReads > 0) ||
269
- (typeof cacheWrites === "number" && cacheWrites > 0)) && (
270
- <tr>
271
- <th className="font-bold text-left align-top w-1 whitespace-nowrap pl-1 pr-3 h-[24px]">
272
- {t("chat:task.cache")}
273
- </th>
274
- <td className="align-top">
275
- {prettyBytes(((cacheReads || 0) + (cacheWrites || 0)) * 4)}
276
- </td>
277
- </tr>
278
- )}
279
-
280
{/* Size display */}
281
{!!currentTaskItem?.size && currentTaskItem.size > 0 && (
282
<tr>
0 commit comments