fix(nds): missing check for app.booted in resize handler to allow hints

This commit is contained in:
2026-02-24 15:31:37 +01:00
parent 128d350b86
commit cfa7081223

View File

@@ -30,7 +30,7 @@ const windowSize = useWindowSize();
watch([windowSize.width, windowSize.height], ([width, height]) => { watch([windowSize.width, windowSize.height], ([width, height]) => {
if (width / height > 614 / 667) { if (width / height > 614 / 667) {
app.allowHints(); if (app.booted) app.allowHints();
} else { } else {
app.disallowHints(); app.disallowHints();
} }