Skip to content

Commit

Permalink
linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gzukowski committed Dec 29, 2023
1 parent d28f944 commit e4ab161
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion js/clickup-add-issues/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const mod: (TransformApp | { requires: string, contentType: string})[] = [
const clickupClient = new ClickupClient(apiKey);

const onError = (error: any) => { console.error(error); };

(input as StringStream)
.map((data) => {
data = JSON.parse(data);
Expand Down
2 changes: 1 addition & 1 deletion js/git-read-issues/src/githubClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class GithubClient {
(elem: { labels: any[]; }) => {
let hasReadLabel = false;
elem.labels.forEach((e) => {
if (typeof e !== "string" && "name" in e && e.name === "read" ) {
if (typeof e !== "string" && "name" in e && e.name === "read") {
hasReadLabel = true;
}
});
Expand Down

0 comments on commit e4ab161

Please sign in to comment.