diff --git a/apps/pace/app.ts b/apps/pace/app.ts index 2bc52bebe..5a992eda5 100644 --- a/apps/pace/app.ts +++ b/apps/pace/app.ts @@ -13,7 +13,6 @@ const exs = require("exstats").getStats( ); let drawTimeout: TimeoutId | undefined; -let lastUnlazy = 0; const splits: number[] = []; // times let splitOffset = 0, splitOffsetPx = 0; @@ -85,9 +84,6 @@ const draw = () => { layout["time"]!.label = formatDuration(exs.state.duration); layout["pace"]!.label = pace; layout.render(); - - if (now - lastUnlazy > 30000) - layout.forgetLazyState(), lastUnlazy = now; }; const pad2 = (n: number) => `0${n}`.substr(-2);