about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnsh Nanda <anshnanda10@gmail.com>2023-08-28 13:39:24 -0700
committerAnsh Nanda <anshnanda10@gmail.com>2023-08-28 13:39:24 -0700
commitc4cf288296927a2b39a11af83856dacb8dfad636 (patch)
tree85b2f530e2c4e306623b71942ab704d8369247f6
parentedfd326069319c80f4825eb33a74295ccf667d71 (diff)
downloadvoidsky-c4cf288296927a2b39a11af83856dacb8dfad636.tar.zst
remove logs
-rw-r--r--src/state/models/discovery/onboarding.ts1
-rw-r--r--src/view/com/auth/onboarding/RecommendedFeeds.tsx1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/state/models/discovery/onboarding.ts b/src/state/models/discovery/onboarding.ts
index ddae235ca..8e7a0a7b9 100644
--- a/src/state/models/discovery/onboarding.ts
+++ b/src/state/models/discovery/onboarding.ts
@@ -42,7 +42,6 @@ export class OnboardingModel {
   }
 
   nextScreenName() {
-    console.log('currentScreen', this.step)
     if (this.step === 'Welcome') {
       this.step = 'RecommendedFeeds'
       return this.step
diff --git a/src/view/com/auth/onboarding/RecommendedFeeds.tsx b/src/view/com/auth/onboarding/RecommendedFeeds.tsx
index d3aacb70b..1936f4234 100644
--- a/src/view/com/auth/onboarding/RecommendedFeeds.tsx
+++ b/src/view/com/auth/onboarding/RecommendedFeeds.tsx
@@ -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)
     }