diff --git a/client/src/events.jsx b/client/src/events.jsx index c295e0e5..6445aa82 100644 --- a/client/src/events.jsx +++ b/client/src/events.jsx @@ -224,7 +224,9 @@ function registerEvents(store) { if (v.phase === 'Finished') { ws.sendAccountInstances(); } - if (localStorage.getItem('tutorial-complete')) { + + // instance.mobile.less hides info at @media 1000 + if (localStorage.getItem('tutorial-complete') || window.innerWidth <= 1100) { store.dispatch(actions.setTutorial(null)); } else if (v.time_control === 'Practice' && v.rounds.length === 1 && tutorial) { tutorialVbox(player, store, tutorial);