Skip to content

Commit 0ca2602

Browse files
twhitbeckSaraVieira
authored andcommitted
fix typo, "Commiting" should be "Committing" (codesandbox#1184)
1 parent 8f1f711 commit 0ca2602

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/app/src/app/pages/common/GithubIntegration/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function GithubIntegration({ store, signals, small }) {
88
<Integration
99
name="GitHub"
1010
color="#4078c0"
11-
description={small ? 'Commits & PRs' : 'Commiting & Pull Requests'}
11+
description={small ? 'Commits & PRs' : 'Committing & Pull Requests'}
1212
Icon={GithubLogo}
1313
small={small}
1414
userInfo={store.user.integrations.github}

packages/app/src/app/store/modules/git/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default Module({
1616
originalGitChanges: null,
1717
commit: null,
1818
pr: null,
19-
isCommiting: false,
19+
isCommitting: false,
2020
isCreatingPr: false,
2121
},
2222
signals: {

packages/app/src/app/store/modules/git/model.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ export default {
4242
prURL: types.maybeNull(types.string),
4343
})
4444
),
45-
isCommiting: types.boolean,
45+
isCommitting: types.boolean,
4646
isCreatingPr: types.boolean,
4747
};

0 commit comments

Comments
 (0)