We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 074340c commit f1b3d11Copy full SHA for f1b3d11
packages/jaeger-ui/src/components/TracePage/Tween.tsx
@@ -57,8 +57,7 @@ export default class Tween {
57
this.callbackComplete = onComplete;
58
this.callbackUpdate = onUpdate;
59
if (delay) {
60
- // @types/node sets the return type of setTieout to NodeJS.Timeout, so prefix
61
- // with `window.`
+ // setTimeout from @types/node returns NodeJS.Timeout, so prefix with `window.`
62
this.timeoutID = window.setTimeout(this._frameCallback, delay);
63
this.requestID = undefined;
64
} else {
0 commit comments