Skip to content

Commit

Permalink
Fix : where문 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
rlawnaks committed Sep 8, 2023
1 parent 6eca1ea commit eaaa63e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/phone/service/phone.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default class PhoneService {
): Promise<CommonResponse<any>> {

const findPhone = await this.phoneRepository.findOne({
where: { id: id },
where: { id },
});

if (!findPhone) {
Expand Down Expand Up @@ -72,7 +72,7 @@ export default class PhoneService {
): Promise<CommonResponse<any>> {

const findPhone = await this.phoneRepository.findOne({
where: { id: id },
where: { id },
});

if (!findPhone) {
Expand All @@ -96,7 +96,7 @@ export default class PhoneService {
): Promise<CommonResponse<any>> {

const findPhone = await this.phoneRepository.findOne({
where: { id: id },
where: { id },
});

if (!findPhone) {
Expand Down

0 comments on commit eaaa63e

Please sign in to comment.