feat: define empty render for Clock and Stats

This commit is contained in:
2025-11-13 21:28:36 +01:00
parent 04d654bbd3
commit 4f71dee02c
2 changed files with 8 additions and 0 deletions

View File

@@ -75,4 +75,8 @@ useRender((ctx) => {
ctx.fillStyle = "#494949";
ctx.fillRect(CENTER_X - 2, CENTER_Y - 2, 5, 5);
});
defineOptions({
render: () => null,
});
</script>

View File

@@ -58,4 +58,8 @@ useRender((ctx) => {
(textY += LINE_HEIGHT),
);
});
defineOptions({
render: () => null,
});
</script>