Update all non-major dependencies (#9674)
* Typescript updates * Update @types/node * Fix more types * Update all non-major dependencies * Remove spurious cast * Remove unused dependency rrweb-snapshot * Update all non-major dependencies * Iterate PR * Update yarn.lock * Remove stale dev dep * Resolve * Pin back axe-core for now, it is a bit too strict Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
parent
851c1ef20c
commit
c3809d3afa
5 changed files with 161 additions and 177 deletions
|
@ -124,10 +124,8 @@ export class PlaybackClock implements IDestroyable {
|
|||
}
|
||||
|
||||
if (!this.timerId) {
|
||||
// cast to number because the types are wrong
|
||||
// 100ms interval to make sure the time is as accurate as possible without
|
||||
// being overly insane
|
||||
this.timerId = <number><any>window.setInterval(this.checkTime, 100);
|
||||
// 100ms interval to make sure the time is as accurate as possible without being overly insane
|
||||
this.timerId = window.setInterval(this.checkTime, 100);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue