Skip to content

Commit

Permalink
initialize onboarding status to complete in non-production
Browse files Browse the repository at this point in the history
  • Loading branch information
beyackle committed Nov 5, 2020
1 parent 448617a commit 35c92ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Composer/packages/client/src/utils/onboardingStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import storage from './storage';

const KEY = 'OnboardingState';
const DEFAULT_STATE = { complete: false };
const DEFAULT_STATE = { complete: process.env.NODE_ENV !== 'production' };

interface IOnboardingState {
complete: boolean;
Expand Down

0 comments on commit 35c92ab

Please sign in to comment.