Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const InfrastructurePage = () => {
</HeaderMenuPortal>
)}

<Routes>
<Routes enableExecutionContextTracking={true}>
<Route path="/inventory" component={SnapshotPage} />
{config.featureFlags.metricsExplorerEnabled && (
<Route path="/explorer" component={MetricsExplorerPage} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function App() {
const routes = getRoutes(isServerless);

return (
<Routes>
<Routes enableExecutionContextTracking={true}>
{Object.keys(routes).map((path) => {
const { handler, exact } = routes[path];
const Wrapper = () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export const PageRouter: FC = () => {
const isUnprivileged = useSyntheticsPrivileges();

return (
<Routes>
<Routes enableExecutionContextTracking={true}>
{routes.map(
({
title,
Expand Down

0 comments on commit 2e92018

Please sign in to comment.