diff options
Diffstat (limited to 'server/sonar-web/src/main/js/app/components/SimpleSessionsContainer.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/SimpleSessionsContainer.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/app/components/SimpleSessionsContainer.tsx b/server/sonar-web/src/main/js/app/components/SimpleSessionsContainer.tsx index 4d7081762c5..e860884adce 100644 --- a/server/sonar-web/src/main/js/app/components/SimpleSessionsContainer.tsx +++ b/server/sonar-web/src/main/js/app/components/SimpleSessionsContainer.tsx @@ -18,10 +18,10 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; -import { lazyLoad } from 'sonar-ui-common/components/lazyLoad'; +import { lazyLoadComponent } from 'sonar-ui-common/components/lazyLoadComponent'; import GlobalFooterContainer from './GlobalFooterContainer'; -const PageTracker = lazyLoad(() => import('./PageTracker')); +const PageTracker = lazyLoadComponent(() => import('./PageTracker')); interface Props { children?: React.ReactNode; |