Skip to content

Commit 2f07320

Browse files
committed
format
1 parent bb88c76 commit 2f07320

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/fps/userscript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default async function ({ addon, console, msg }) {
2424
const now = runtime.currentMSecs;
2525
// If it's been more than 500ms since the last draw, we want to reset the variables.
2626
if (typeof lastRender !== "number" || now - lastRender > 500) {
27-
lastRender = now
27+
lastRender = now;
2828
lastFps = null;
2929
return;
3030
}

0 commit comments

Comments
 (0)