FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Fixes on exports, and put the fallback in the right place · devhttps/frontend@2fea824 · GitHub

Commit 2fea824

Browse files
committed
Fixes on exports, and put the fallback in the right place
1 parent a523838 commit 2fea824

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

‎common/app/conf/switches/CommercialSwitches.scala‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ trait CommercialSwitches {
352352
name = "prebid-appnexus",
353353
description = "Include AppNexus adapter in Prebid auctions",
354354
owners = group(Commercial),
355-
safeState = On,
355+
safeState = Off,
356356
sellByDate = never,
357357
exposeClientSide = true
358358
)

‎static/src/javascripts/projects/commercial/modules/prebid/bid-config.js‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ const getIndexSiteId = (): string => {
107107
}
108108
} else {
109109
const site = config
110-
.get('page.pbIndexSites')
111-
.find(s => s.bp === getBreakpointKey(), []);
110+
.get('page.pbIndexSites', [])
111+
.find(s => s.bp === getBreakpointKey());
112112
return site && site.id ? site.id.toString() : '';
113113
}
114114
};

‎static/src/javascripts/projects/commercial/modules/prebid/prebid.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class PrebidAdUnit {
6868
}
6969
}
7070

71-
export class PrebidService {
71+
class PrebidService {
7272
static initialise(): void {
7373
const pbjsConfig = Object.assign(
7474
{},

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL