Android build v1.0.25

This commit is contained in:
Warren H
2026-06-18 23:28:43 -04:00
parent 7fe62d8c82
commit 814eb1998d
4 changed files with 42 additions and 25 deletions
+10
View File
@@ -131,6 +131,13 @@ function App() {
})
}, [screen])
useEffect(() => {
if (!authChecked || !account || !profile || screen === 'combat') return
window.requestAnimationFrame(() => {
focusFirstControl()
})
}, [account, authChecked, profile, screen])
useEffect(() => {
window.localStorage.setItem(LAST_DIFFICULTY_KEY, String(selectedDifficultyId))
}, [selectedDifficultyId])
@@ -148,6 +155,9 @@ function App() {
setScreen('menu')
setError('')
setServerMessage('')
window.requestAnimationFrame(() => {
focusFirstControl()
})
}
async function signOut() {