Skip to content

Commit

Permalink
refactor: remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrdsilva committed May 26, 2024
1 parent 8f77d8e commit 36825f7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/providers/blog.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ export class BlogService {
}

async findById(id: string) {
const post = await this.blogRepository.findOneBy({ id: id });
console.log(post);
return post;
return await this.blogRepository.findOneBy({ id: id });
}
}

0 comments on commit 36825f7

Please sign in to comment.