Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jlquaccia committed Feb 21, 2025
1 parent d8303d0 commit c72760e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev-docs/publisher-api-reference/setConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -1394,14 +1394,14 @@ The Previous Auction Info module enables functionality to collect prior auction
pbjs.setConfig({previousAuctionInfo: true})
```

2. Only bid adapters who have enabled this feature will be able to utilize it. To do this, a bid adapter must add the following to their bidAdapter.js file:
1. Only bid adapters who have enabled this feature will be able to utilize it. To do this, a bid adapter must add the following to their bidAdapter.js file:

```javascript
import { enablePreviousAuctionInfo } from '../libraries/previousAuctionInfo/previousAuctionInfo.js';
enablePreviousAuctionInfo({ bidderCode: 'some bidder code' });
```

3. Only valid bid requests submitted by bidders who have enabled the Previous Auction Info module will be permitted.
1. Only valid bid requests submitted by bidders who have enabled the Previous Auction Info module will be permitted.

If the requirements above are met, the flow for how the module works is as follows:

Expand Down

0 comments on commit c72760e

Please sign in to comment.