We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d406d0 commit 2d80b6fCopy full SHA for 2d80b6f
src/OnboardingSPA/steps/TheFork/index.js
@@ -73,7 +73,9 @@ const TheFork = () => {
73
// setting the experiment version to 2 so that DIY onboarding is always hidden
74
const theForkExperimentVersion = 2;
75
setExperimentVersion( theForkExperimentVersion );
76
- if ( ! currentData.sitegen.theForkExperimentVersion ) {
+
77
+ // the default value of theForkExperimentVersion while initialising the store is 0
78
+ if ( currentData.sitegen.theForkExperimentVersion === 0 ) {
79
// Sync that to the store and DB for same version on refresh
80
currentData.sitegen.theForkExperimentVersion = theForkExperimentVersion;
81
setCurrentOnboardingData( currentData );
0 commit comments