Skip to content

Commit

Permalink
yarn lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wrighbr committed Feb 28, 2022
1 parent 2b76598 commit e7d9192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export async function repoSearch(

const HarborRepos = await client.get(team);

if (HarborRepos != null && JSON.parse(HarborRepos).length >= 1) {
if (HarborRepos !== null && JSON.parse(HarborRepos).length >= 1) {
return HarborRepos;
}
const Repos = await findRepos(baseUrl, username, password, repos);
Expand Down

0 comments on commit e7d9192

Please sign in to comment.