mod-build 3.6.76-beta.1 → 3.6.76-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.6.76-beta.1",
3
+ "version": "3.6.76-beta.2",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -441,12 +441,8 @@ modForm.isSupportedByCxp = function(formData) {
441
441
  * @returns {Boolean} - true if meets MQL Criteria
442
442
  */
443
443
  modForm.meetsMQLCriteria = function(formData) {
444
- if (this.isSmallBusiness(formData.annualRevenue)) {
445
- return false;
446
- }
447
-
448
444
  if (this.isFreeEmail(formData.email) && formData.websiteUrl === '') {
449
- return false;
445
+ return false;
450
446
  }
451
447
 
452
448
  return true;