aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/hoc/withUserOrganizations.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/components/hoc/withUserOrganizations.tsx')
-rw-r--r--server/sonar-web/src/main/js/components/hoc/withUserOrganizations.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/hoc/withUserOrganizations.tsx b/server/sonar-web/src/main/js/components/hoc/withUserOrganizations.tsx
index c016ce0ffa5..0e16f6f83ef 100644
--- a/server/sonar-web/src/main/js/components/hoc/withUserOrganizations.tsx
+++ b/server/sonar-web/src/main/js/components/hoc/withUserOrganizations.tsx
@@ -19,9 +19,9 @@
*/
import * as React from 'react';
import { connect } from 'react-redux';
-import { getWrappedDisplayName } from './utils';
-import { Store, getMyOrganizations } from '../../store/rootReducer';
import { fetchMyOrganizations } from '../../apps/account/organizations/actions';
+import { getMyOrganizations, Store } from '../../store/rootReducer';
+import { getWrappedDisplayName } from './utils';
interface OwnProps {
fetchMyOrganizations: () => Promise<void>;