Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastasiiaSvietlova committed Dec 19, 2024
1 parent b9e72b1 commit 1ad8146
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions packages/platforms/browser/lib/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,13 @@ if (typeof window === 'undefined' || typeof document === 'undefined') {
performance,
setAppState
),
// ResourceLoadPlugin should always come after FullPageLoad plugin, as it should use that
// span context as the parent of it's spans
new ResourceLoadPlugin(spanFactory, spanContextStorage, window.PerformanceObserver),
new NetworkRequestPlugin(spanFactory, spanContextStorage, fetchRequestTracker, xhrRequestTracker),
new RouteChangePlugin(spanFactory, window.location, document, setAppState)
]},
// ResourceLoadPlugin should always come after FullPageLoad plugin, as it should use that
// span context as the parent of it's spans
new ResourceLoadPlugin(spanFactory, spanContextStorage, window.PerformanceObserver),
new NetworkRequestPlugin(spanFactory, spanContextStorage, fetchRequestTracker, xhrRequestTracker),
new RouteChangePlugin(spanFactory, window.location, document, setAppState)
]
},
persistence,
retryQueueFactory: (delivery, retryQueueMaxSize) => new InMemoryQueue(delivery, retryQueueMaxSize)
})
Expand Down

0 comments on commit 1ad8146

Please sign in to comment.