Skip to content

Commit bfb5ebc

Browse files
committed
fix wrong function name
1 parent 0106e91 commit bfb5ebc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src-react/reducers/versions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as types from 'constants/action-types';
22

3-
function userConfig(state, action) {
3+
function versions(state, action) {
44
switch(action.type) {
55
case types.RECEIVE_GIT_VERSION:
66
const { payload: gitVersion } = action;
@@ -13,4 +13,4 @@ function userConfig(state, action) {
1313
}
1414
}
1515

16-
export default userConfig;
16+
export default versions;

0 commit comments

Comments
 (0)