From ba7c974af686382a7538ab41aee19902e04b0a2a Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Mon, 29 Dec 2025 19:48:18 +0100 Subject: [PATCH] fix(common): add missing render function in buttons --- app/components/Common/Buttons.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/components/Common/Buttons.vue b/app/components/Common/Buttons.vue index abf7c7d..09faa45 100644 --- a/app/components/Common/Buttons.vue +++ b/app/components/Common/Buttons.vue @@ -68,4 +68,6 @@ useKeyDown((key) => { break; } }); + +defineOptions({ render: () => null });