diff --git a/packages/spacecat-shared-rum-api-client/src/common/rum-bundler-client.js b/packages/spacecat-shared-rum-api-client/src/common/rum-bundler-client.js index b2ffc15f..1742f779 100644 --- a/packages/spacecat-shared-rum-api-client/src/common/rum-bundler-client.js +++ b/packages/spacecat-shared-rum-api-client/src/common/rum-bundler-client.js @@ -195,7 +195,7 @@ async function fetchBundles(opts = {}) { b.rumBundles .filter((bundle) => !filterBotTraffic || !isBotTraffic(bundle)) .map(filterEvents(checkpoints)) - .forEach((filteredEvent) => result.push(filteredEvent)); + .forEach((bundle) => result.push(bundle)); }); } return mergeBundlesWithSameId(result);