Skip to content

Commit

Permalink
fix: onboarding anon user fetching actions (#4150)
Browse files Browse the repository at this point in the history
  • Loading branch information
sshanzel authored Feb 5, 2025
1 parent 948bf5d commit f35bdc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/src/hooks/auth/useOnboarding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const useOnboarding = (): UseOnboarding => {

return {
shouldShowAuthBanner,
isOnboardingReady: isActionsFetched && isAuthReady,
isOnboardingReady: isAuthReady && (isActionsFetched || !user),
hasCompletedEditTags,
hasCompletedContentTypes,
completeStep: (action: ActionType) => completeAction(action),
Expand Down

0 comments on commit f35bdc3

Please sign in to comment.