Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
chore: remove log
Browse files Browse the repository at this point in the history
missed log
  • Loading branch information
Keyrxng committed Oct 22, 2023
1 parent bd99432 commit 152f5ae
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/handlers/comment/handlers/review.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,14 +325,6 @@ async function findFileInRepo(context: any, fileName: string): Promise<any> {

const file = tree.tree.find((f: any) => f.type === "blob" && f.path.toLowerCase().endsWith(fileName.toLowerCase()));

Check warning on line 326 in src/handlers/comment/handlers/review.ts

View workflow job for this annotation

GitHub Actions / build

Unexpected any. Specify a different type

console.log("=================tree===================");
console.log(tree);
console.log("====================================");

console.log("=================file===================");
console.log(file);
console.log("====================================");

if (!file) {
return null;
}
Expand Down

0 comments on commit 152f5ae

Please sign in to comment.