Signed-off-by: Matt Bruce <matt.bruce1@toyota.com>

This commit is contained in:
Matt Bruce 2025-12-29 00:23:10 -06:00
parent 24a9cfb5b7
commit fd6e3355a5
2 changed files with 6 additions and 6 deletions

View File

@ -164,12 +164,12 @@ struct GameTableView: View {
checkOnboardingHints() checkOnboardingHints()
}, },
onStartPlaying: { onStartPlaying: {
showWelcome = false // Mark all hints as shown FIRST so they don't appear
state.onboarding.completeWelcome()
// Mark all hints as shown so they don't appear
state.onboarding.markHintShown("bettingZone") state.onboarding.markHintShown("bettingZone")
state.onboarding.markHintShown("dealButton") state.onboarding.markHintShown("dealButton")
state.onboarding.markHintShown("firstResult") state.onboarding.markHintShown("firstResult")
state.onboarding.completeWelcome()
showWelcome = false
} }
) )
} }

View File

@ -112,12 +112,12 @@ struct GameTableView: View {
checkOnboardingHints() checkOnboardingHints()
}, },
onStartPlaying: { onStartPlaying: {
showWelcome = false // Mark all hints as shown FIRST so they don't appear
state.onboarding.completeWelcome()
// Mark all hints as shown so they don't appear
state.onboarding.markHintShown("bettingZone") state.onboarding.markHintShown("bettingZone")
state.onboarding.markHintShown("dealButton") state.onboarding.markHintShown("dealButton")
state.onboarding.markHintShown("playerActions") state.onboarding.markHintShown("playerActions")
state.onboarding.completeWelcome()
showWelcome = false
} }
) )
} }