From cfa70812230d24e653eb20af837d2c8730bf3066 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Tue, 24 Feb 2026 15:31:37 +0100 Subject: [PATCH] fix(nds): missing check for app.booted in resize handler to allow hints --- app/pages/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pages/index.vue b/app/pages/index.vue index 34cbdde..afd062e 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -30,7 +30,7 @@ const windowSize = useWindowSize(); watch([windowSize.width, windowSize.height], ([width, height]) => { if (width / height > 614 / 667) { - app.allowHints(); + if (app.booted) app.allowHints(); } else { app.disallowHints(); }