diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-10 17:19:45 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-10 17:19:45 -0600 |
commit | cc015d168645442897e31adb2984114032443d20 (patch) | |
tree | 2a8a021aff72da9aba91b6050d70178fab5c2a0d /src/state/models/onboard.ts | |
parent | 0fc8ef3358f3ba0363b5e0ee68108eb8358ceb79 (diff) | |
download | voidsky-cc015d168645442897e31adb2984114032443d20.tar.zst |
Fixes to onboarding
Diffstat (limited to 'src/state/models/onboard.ts')
-rw-r--r-- | src/state/models/onboard.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state/models/onboard.ts b/src/state/models/onboard.ts index 20e6ecda9..1af0223ab 100644 --- a/src/state/models/onboard.ts +++ b/src/state/models/onboard.ts @@ -55,6 +55,7 @@ export class OnboardModel { i++ if (i >= OnboardStageOrder.length) { this.isOnboarding = false + this.stage = OnboardStageOrder[0] // in case they make a new account } else { this.stage = OnboardStageOrder[i] } |