Skip to content

Commit 5863989

Browse files
authored
Merge pull request desktop#16210 from garyray-k/patch-1
Update app.tsx typo
2 parents db60d7b + 99b837b commit 5863989

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/src/ui/app.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -422,9 +422,9 @@ export class App extends React.Component<IAppProps, IAppState> {
422422
case 'view-repository-on-github':
423423
return this.viewRepositoryOnGitHub()
424424
case 'compare-on-github':
425-
return this.openBranchOnGitub('compare')
425+
return this.openBranchOnGitHub('compare')
426426
case 'branch-on-github':
427-
return this.openBranchOnGitub('tree')
427+
return this.openBranchOnGitHub('tree')
428428
case 'create-issue-in-repository-on-github':
429429
return this.openIssueCreationOnGitHub()
430430
case 'open-in-shell':
@@ -719,7 +719,7 @@ export class App extends React.Component<IAppProps, IAppState> {
719719
this.props.dispatcher.startMergeBranchOperation(repository, isSquash)
720720
}
721721

722-
private openBranchOnGitub(view: 'tree' | 'compare') {
722+
private openBranchOnGitHub(view: 'tree' | 'compare') {
723723
const htmlURL = this.getCurrentRepositoryGitHubURL()
724724
if (!htmlURL) {
725725
return

0 commit comments

Comments
 (0)