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 f7c93b4 commit 0bea517Copy full SHA for 0bea517
src/extension.ts
@@ -5072,7 +5072,7 @@ class CopilotTokenTracker implements vscode.Disposable {
5072
5073
// Apply button usage (high rate shows active adoption of suggestions)
5074
if (p.applyUsage && p.applyUsage.totalCodeBlocks > 0) {
5075
- const applyRatePercent = Math.round(p.applyUsage.applyRate * 100);
+ const applyRatePercent = Math.round(p.applyUsage.applyRate);
5076
wiEvidence.push(`${applyRatePercent}% code block apply rate (${p.applyUsage.totalApplies}/${p.applyUsage.totalCodeBlocks})`);
5077
if (p.applyUsage.applyRate >= 0.5) {
5078
wiStage = Math.max(wiStage, 2) as 1 | 2 | 3 | 4;
0 commit comments