diff options
Diffstat (limited to 'server/sonar-web/src/main/js/app/components/App.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/App.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/app/components/App.tsx b/server/sonar-web/src/main/js/app/components/App.tsx index 3c3a3febc73..01724e4bb25 100644 --- a/server/sonar-web/src/main/js/app/components/App.tsx +++ b/server/sonar-web/src/main/js/app/components/App.tsx @@ -20,11 +20,11 @@ import * as React from 'react'; import { connect } from 'react-redux'; import { lazyLoad } from 'sonar-ui-common/components/lazyLoad'; -import { fetchLanguages } from '../../store/rootActions'; import { fetchMyOrganizations } from '../../apps/account/organizations/actions'; import { isSonarCloud } from '../../helpers/system'; -import { getCurrentUser, getAppState, getGlobalSettingValue, Store } from '../../store/rootReducer'; import { isLoggedIn } from '../../helpers/users'; +import { fetchLanguages } from '../../store/rootActions'; +import { getAppState, getCurrentUser, getGlobalSettingValue, Store } from '../../store/rootReducer'; const PageTracker = lazyLoad(() => import('./PageTracker')); |