remove logs

zio/stable
Ansh Nanda 2023-08-28 13:39:24 -07:00
parent edfd326069
commit c4cf288296
2 changed files with 0 additions and 2 deletions

View File

@ -42,7 +42,6 @@ export class OnboardingModel {
}
nextScreenName() {
console.log('currentScreen', this.step)
if (this.step === 'Welcome') {
this.step = 'RecommendedFeeds'
return this.step

View File

@ -15,7 +15,6 @@ export const RecommendedFeeds = observer(({navigation}: Props) => {
const next = () => {
const nextScreenName = store.onboarding.nextScreenName()
console.log('nextScreenName', store.onboarding.nextScreenName())
if (nextScreenName) {
navigation.navigate(nextScreenName)
}