Skip to content

Commit d802780

Browse files
committed
lint fix
1 parent e7057db commit d802780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/codewhisperer/util/telemetryHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ export class TelemetryHelper {
305305
// When we send a userTriggerDecision for neither Accept nor Reject, service side should not use this value
306306
// and client side will set this value to 0.0.
307307
let e2eLatency = session.firstSuggestionShowTime - session.invokeSuggestionStartTime
308-
if (aggregatedSuggestionState != 'Reject' && aggregatedSuggestionState != 'Accept') {
308+
if (aggregatedSuggestionState !== 'Reject' && aggregatedSuggestionState !== 'Accept') {
309309
e2eLatency = 0.0
310310
}
311311

0 commit comments

Comments
 (0)