Skip to content

Commit

Permalink
fix(rum-api-client): pr reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
ekremney committed Dec 9, 2024
1 parent 4f7dda5 commit d30f18e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit d30f18e

Please sign in to comment.