Skip to content

Commit 0f8e77c

Browse files
authored
Merge pull request Expensify#87224 from ZhenjaHorbach/fix-discover-section
[CP Staging] Fix discover section is missing for new accounts
2 parents 6038665 + 9905da5 commit 0f8e77c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/home/DiscoverSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function DiscoverSection() {
3636
const parentReportAction = useParentReportAction(viewTourTaskReport);
3737
const [onboarding] = useOnyx(ONYXKEYS.NVP_ONBOARDING);
3838

39-
if (onboarding?.selfTourViewed !== false || !onboarding) {
39+
if (onboarding?.selfTourViewed || !onboarding) {
4040
return null;
4141
}
4242

0 commit comments

Comments
 (0)