Skip onboarding if waitlisted
This commit is contained in:
parent
c29f2400ad
commit
ec79f6354d
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ class SoapboxMount extends React.PureComponent {
|
|||
// Disabling introduction for launch
|
||||
const { needsOnboarding } = this.props;
|
||||
|
||||
if (needsOnboarding) {
|
||||
if (!waitlisted && needsOnboarding) {
|
||||
return (
|
||||
<IntlProvider locale={locale} messages={this.state.messages}>
|
||||
<Helmet>
|
||||
|
|
Loading…
Reference in a new issue