File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,21 +2,21 @@ import React, { Component } from 'react';
2
2
import { bindActionCreators } from 'redux' ;
3
3
import { connect } from 'react-redux'
4
4
5
- import * as ungitConfigActionCreators from 'actions/ungit-config ' ;
5
+ import * as bootstrapActionCreators from 'actions/bootstrap ' ;
6
6
import 'styles/styles.scss' ;
7
7
8
8
@connect ( state => {
9
9
return { ...state } ;
10
10
} , dispatch => {
11
11
return {
12
- actions : bindActionCreators ( Object . assign ( { } , ungitConfigActionCreators ) , dispatch )
12
+ actions : bindActionCreators ( Object . assign ( { } , bootstrapActionCreators ) , dispatch )
13
13
} ;
14
14
} )
15
15
class Path extends Component {
16
16
17
17
componentWillMount ( ) {
18
18
const { actions } = this . props ;
19
- actions . fetchUngitConfig ( ) ;
19
+ actions . bootstrap ( ) ;
20
20
}
21
21
22
22
render ( ) {
You can’t perform that action at this time.
0 commit comments