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 e7057db commit d802780Copy full SHA for d802780
packages/core/src/codewhisperer/util/telemetryHelper.ts
@@ -305,7 +305,7 @@ export class TelemetryHelper {
305
// When we send a userTriggerDecision for neither Accept nor Reject, service side should not use this value
306
// and client side will set this value to 0.0.
307
let e2eLatency = session.firstSuggestionShowTime - session.invokeSuggestionStartTime
308
- if (aggregatedSuggestionState != 'Reject' && aggregatedSuggestionState != 'Accept') {
+ if (aggregatedSuggestionState !== 'Reject' && aggregatedSuggestionState !== 'Accept') {
309
e2eLatency = 0.0
310
}
311
0 commit comments