mod-build 4.0.53-beta.1 → 4.0.53-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": "4.0.53-beta.1",
3
+ "version": "4.0.53-beta.2",
4
4
  "description": "Share components for S3 sites.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -194,7 +194,7 @@ export const handlebarsHelpers = [
194
194
  name: 'addTcpaBelowCta',
195
195
  fn: function(page) {
196
196
  const trade = page.primary_trade.toUpperCase();
197
- return trade !== 'SOLAR' || trade !== 'HOME_SECURITY' || !page.isBranded;
197
+ return trade !== 'SOLAR' && trade !== 'HOME_SECURITY' && !page.isBranded;
198
198
  }
199
199
  }
200
200
  ]