fix(nds): hide help button on smaller devices

This commit is contained in:
2026-02-26 11:47:28 +01:00
parent 02e00b170a
commit 0cb1f4a5ff
2 changed files with 8 additions and 2 deletions

View File

@@ -61,7 +61,9 @@ export const useIntroStore = defineStore("intro", {
)
.call(() => {
const app = useAppStore();
app.allowHints();
if (window.innerWidth / window.innerHeight > 614 / 667) {
app.allowHints();
}
});
},