diff --git a/packages/console/src/scss/normalized.scss b/packages/console/src/scss/normalized.scss index b1f99134a..fe26a1556 100644 --- a/packages/console/src/scss/normalized.scss +++ b/packages/console/src/scss/normalized.scss @@ -39,3 +39,9 @@ input { ::-webkit-scrollbar-track { background: transparent; } + +.appInsightsWrapper { + width: 100%; + height: 100%; + flex: 1; +} diff --git a/packages/console/src/utils/app-insights.ts b/packages/console/src/utils/app-insights.ts index d9166ff8a..00c2ad77f 100644 --- a/packages/console/src/utils/app-insights.ts +++ b/packages/console/src/utils/app-insights.ts @@ -46,5 +46,5 @@ export const withAppInsights = (Component: ComponentType) => { return Component; } - return withAITracking(reactPlugin, Component); + return withAITracking(reactPlugin, Component, undefined, 'appInsightsWrapper'); };