Do not show subscribe form if language is not english

This commit is contained in:
fragosti 2018-06-04 17:06:23 -07:00
parent cf73363016
commit 3c508c1d27

View File

@ -293,7 +293,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
</div>
</div>
</div>
<SubscribeForm />
{this.props.translate.getLanguage() === Language.English && <SubscribeForm />}
</div>
);
}