diff options
Diffstat (limited to 'src/view/com/auth/onboarding/Welcome.tsx')
-rw-r--r-- | src/view/com/auth/onboarding/Welcome.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/auth/onboarding/Welcome.tsx b/src/view/com/auth/onboarding/Welcome.tsx index cb3a2307a..a1e97a32f 100644 --- a/src/view/com/auth/onboarding/Welcome.tsx +++ b/src/view/com/auth/onboarding/Welcome.tsx @@ -25,7 +25,7 @@ export const Welcome = observer(({navigation}: Props) => { }, [store.shell.minimalShellMode, store]) const next = () => { - const nextScreenName = store.onboarding.nextScreenName('Welcome') + const nextScreenName = store.onboarding.next('Welcome') if (nextScreenName) { navigation.navigate(nextScreenName) } |