Skip to content

Commit

Permalink
🐛 searchByBrokenCabinet 함수에서 BROKEN cabinet이 아닌 BANNED cabinet이 가져와지는…
Browse files Browse the repository at this point in the history
… 버그 수정 #136

searchByBrokenCabinet 함수에서 BROKEN cabinet이 아닌 BANNED cabinet이 가져와지는 버그 수정 #136
  • Loading branch information
sichoi42 committed Nov 7, 2022
1 parent 829b021 commit 597823c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/v3/search/repository/search.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export class SearchRepository implements ISearchRepository {
): Promise<BrokenCabinetInfoPagenationDto> {
const result = await this.cabinetRepository.findAndCount({
where: {
status: CabinetStatusType.BANNED,
status: CabinetStatusType.BROKEN,
},
order: { cabinet_id: 'ASC' },
take: length,
Expand Down

0 comments on commit 597823c

Please sign in to comment.