Skip to content

Commit

Permalink
fix: 불필요한 console.log 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
kimhji committed Dec 2, 2024
1 parent e1cc2f8 commit d813d48
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apps/backend/src/lotus/lotus.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { Lotus } from './lotus.entity';
import { LotusRepository } from './lotus.repository';
import { GistService } from '@/gist/gist.service';
import { LotusTagService } from '@/relation/lotus.tag.service';
import { TagService } from '@/tag/tag.service';
import { UserService } from '@/user/user.service';

@Injectable()
Expand Down Expand Up @@ -170,7 +169,6 @@ export class LotusService {
};
if (search) {
const lotuses = await this.lotusTagService.searchTag(search);
console.log(lotuses);
whereData['lotusId'] = In(lotuses);
}
return await this.lotusRepository.findAndCount({
Expand Down

0 comments on commit d813d48

Please sign in to comment.