Skip to content

Commit 689e5b0

Browse files
committed
typo
1 parent f7530a5 commit 689e5b0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src-react/actions/ungit-config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ export function fetchUngitConfig() {
1212
if (!json.config.bugtracking) {
1313
dispatch(fetchUserConfig());
1414
}
15-
dispatch(receiveUgitConfig(json));
15+
dispatch(receiveUngitConfig(json));
1616
})
1717
.catch(e => {
1818
dispatch(apiError(e.message));
1919
});
2020
};
2121
};
2222

23-
function receiveUgitConfig(ungitConfig) {
23+
function receiveUngitConfig(ungitConfig) {
2424
return {
2525
type: types.RECEIVE_UNGIT_CONFIG,
2626
payload: ungitConfig

src-react/containers/path.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
22
import { bindActionCreators } from 'redux';
33
import { connect } from 'react-redux'
44

5-
import AlerArea from 'components/alert-area';
5+
import AlertArea from 'components/alert-area';
66
import * as bootstrapActionCreators from 'actions/bootstrap';
77
import 'styles/styles.scss';
88

@@ -28,7 +28,7 @@ class Path extends Component {
2828
<div className="app-wrapper">
2929
{
3030
pending === 0 && errMessage.length === 0 ? (
31-
<AlerArea config={ this.props.config }
31+
<AlertArea config={ this.props.config }
3232
gitVersionErrorVisible={ app.gitVersionErrorVisible }
3333
showNewVersionAvailable={ app.showNewVersionAvailable }
3434
showBugtrackingNagscreen={ app.showBugtrackingNagscreen }

0 commit comments

Comments
 (0)