aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/hoc/withAppState.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/components/hoc/withAppState.tsx')
-rw-r--r--server/sonar-web/src/main/js/components/hoc/withAppState.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/hoc/withAppState.tsx b/server/sonar-web/src/main/js/components/hoc/withAppState.tsx
index 0e6e3f251cf..c81252162d4 100644
--- a/server/sonar-web/src/main/js/components/hoc/withAppState.tsx
+++ b/server/sonar-web/src/main/js/components/hoc/withAppState.tsx
@@ -19,8 +19,8 @@
*/
import * as React from 'react';
import { connect } from 'react-redux';
+import { getAppState, Store } from '../../store/rootReducer';
import { getWrappedDisplayName } from './utils';
-import { Store, getAppState } from '../../store/rootReducer';
export function withAppState<P>(
WrappedComponent: React.ComponentClass<P & { appState: Partial<T.AppState> }>