We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b067e3 commit 00febbeCopy full SHA for 00febbe
src/platforms/javascript/common/configuration/micro-frontend-support.mdx
@@ -221,7 +221,8 @@ init({
221
// Find the last frame with module metadata containing a DSN
222
const routeTo = frames
223
.filter((frame) => frame.module_metadata && frame.module_metadata.dsn)
224
- .map((v) => v.module_metadata);
+ .map((v) => v.module_metadata)
225
+ .slice(-1); // using top frame only - you may want to customize this according to your needs
226
227
if (routeTo.length) {
228
event.extra = {
0 commit comments