diff --git a/app/components/Home/TopScreen/Clock.vue b/app/components/Home/TopScreen/Clock.vue index e1266bd..ae99b11 100644 --- a/app/components/Home/TopScreen/Clock.vue +++ b/app/components/Home/TopScreen/Clock.vue @@ -75,4 +75,8 @@ useRender((ctx) => { ctx.fillStyle = "#494949"; ctx.fillRect(CENTER_X - 2, CENTER_Y - 2, 5, 5); }); + +defineOptions({ + render: () => null, +}); diff --git a/app/components/Stats.vue b/app/components/Stats.vue index 38a8ebe..e15b953 100644 --- a/app/components/Stats.vue +++ b/app/components/Stats.vue @@ -58,4 +58,8 @@ useRender((ctx) => { (textY += LINE_HEIGHT), ); }); + +defineOptions({ + render: () => null, +});