Skip to content

Commit

Permalink
Change the default value to true
Browse files Browse the repository at this point in the history
  • Loading branch information
blazejkustra committed Sep 16, 2024
1 parent 11a19ed commit 8c510c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libs/hasCompletedGuidedSetupFlowSelector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ function hasCompletedGuidedSetupFlowSelector(onboarding: OnyxValue<typeof ONYXKE
if (Array.isArray(onboarding)) {
return true;
}
return onboarding?.hasCompletedGuidedSetupFlow ?? false;

return onboarding?.hasCompletedGuidedSetupFlow ?? true;
}

export default hasCompletedGuidedSetupFlowSelector;

0 comments on commit 8c510c0

Please sign in to comment.