Skip to content

Commit 08749da

Browse files
committed
chore(linting): rem out of scope linting
1 parent 8069fe9 commit 08749da

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

webview-ui/src/components/history/TaskItemFooter.tsx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const TaskItemFooter: React.FC<TaskItemFooterProps> = ({ item, variant, isSelect
4242
{formatLargeNumber(item.cacheReads || 0)}
4343
</span>
4444
)}
45-
45+
4646
{/* Compact Tokens */}
4747
{(item.tokensIn || item.tokensOut) && (
4848
<>
@@ -74,15 +74,12 @@ const TaskItemFooter: React.FC<TaskItemFooterProps> = ({ item, variant, isSelect
7474
<span className="font-medium">{formatLargeNumber(item.cacheWrites || 0)}</span>
7575
</span>
7676
<span className="flex items-center gap-px" data-testid="cache-reads">
77-
<i
78-
className="codicon codicon-arrow-right"
79-
style={metadataIconWithTextAdjustStyle}
80-
/>
77+
<i className="codicon codicon-arrow-right" style={metadataIconWithTextAdjustStyle} />
8178
<span className="font-medium">{formatLargeNumber(item.cacheReads || 0)}</span>
8279
</span>
8380
</div>
8481
)}
85-
82+
8683
{/* Full Tokens */}
8784
{(item.tokensIn || item.tokensOut) && (
8885
<div className="flex items-center flex-wrap gap-x-1">

0 commit comments

Comments
 (0)