remove logs
parent
edfd326069
commit
c4cf288296
|
@ -42,7 +42,6 @@ export class OnboardingModel {
|
||||||
}
|
}
|
||||||
|
|
||||||
nextScreenName() {
|
nextScreenName() {
|
||||||
console.log('currentScreen', this.step)
|
|
||||||
if (this.step === 'Welcome') {
|
if (this.step === 'Welcome') {
|
||||||
this.step = 'RecommendedFeeds'
|
this.step = 'RecommendedFeeds'
|
||||||
return this.step
|
return this.step
|
||||||
|
|
|
@ -15,7 +15,6 @@ export const RecommendedFeeds = observer(({navigation}: Props) => {
|
||||||
|
|
||||||
const next = () => {
|
const next = () => {
|
||||||
const nextScreenName = store.onboarding.nextScreenName()
|
const nextScreenName = store.onboarding.nextScreenName()
|
||||||
console.log('nextScreenName', store.onboarding.nextScreenName())
|
|
||||||
if (nextScreenName) {
|
if (nextScreenName) {
|
||||||
navigation.navigate(nextScreenName)
|
navigation.navigate(nextScreenName)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue