From 2ae71f879ccf53658d95376053ec10d8271b4001 Mon Sep 17 00:00:00 2001 From: wsusrasp <106743463+wsusrasp@users.noreply.github.com> Date: Thu, 24 Aug 2023 19:39:09 +0200 Subject: [PATCH] Update example in fledgeForGpt.md (#4818) Update variable names in example to work with updated fledge module --- dev-docs/modules/fledgeForGpt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/modules/fledgeForGpt.md b/dev-docs/modules/fledgeForGpt.md index 04d58d8d26..1b55aa9963 100644 --- a/dev-docs/modules/fledgeForGpt.md +++ b/dev-docs/modules/fledgeForGpt.md @@ -145,9 +145,9 @@ function interpretResponse(resp, req) { const bids = parseBids(resp); // Load the auctionConfigs from the response - also adapter specific - const auctionConfigs = parseAuctionConfigs(resp); + const fledgeAuctionConfigs = parseAuctionConfigs(resp); - if (auctionConfigs) { + if (fledgeAuctionConfigs) { // Return a tuple of bids and auctionConfigs. It is possible that bids could be null. return {bids, fledgeAuctionConfigs}; } else {