Skip to content

Commit

Permalink
remove block bidding
Browse files Browse the repository at this point in the history
  • Loading branch information
dskamiotis committed Dec 4, 2024
1 parent a446fff commit 9a0fbe5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions src/lib/header-bidding/a9/a9.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,10 @@ const bidderTimeout = 1500;
const initialise = (): void => {
if (!initialised && window.apstag) {
initialised = true;
const blockedBidders = window.guardian.config.page.isFront
? [
'1lsxjb4', // GumGum, as they have been showing wonky formats on fronts
]
: [];
window.apstag.init({
pubID: window.guardian.config.page.a9PublisherId,
adServer: 'googletag',
bidTimeout: bidderTimeout,
blockedBidders,
});
}
};
Expand Down
2 changes: 1 addition & 1 deletion src/types/global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ type ApstagInitConfig = {
pubID: string;
adServer?: string;
bidTimeout?: number;
blockedBidders?: string[];
// blockedBidders?: string[];
};

type FetchBidsBidConfig = {
Expand Down

0 comments on commit 9a0fbe5

Please sign in to comment.