Fix typos from refactoring

This commit is contained in:
2018-07-09 09:56:52 +05:30
parent 2ffad9f359
commit 093e70cd69
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -185,7 +185,7 @@ class GithubDetectUnusedRepos {
public async fetchUnusedForkedRepos() {
const params: Octokit.ReposGetForUserParams = {
this.username,
username: this.username,
};
const repos: ResponseWithDataArray<RepoFromGetUserRepo> = await this.paginate(
+1 -1
View File
@@ -1,6 +1,6 @@
import 'babel-polyfill';
// tslint:disable-next-line:ordered-imports
import { fetchUnusedForkedRepos, runMain } from './gh';
import { runMain } from './gh';
// tslint:disable-next-line:only-arrow-functions
(function(currentWindow: Window) {