Skip to content

Commit

Permalink
fix(groomer): 빌드 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
MOONProd committed Dec 19, 2024
1 parent d4b9bf8 commit d5af82e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions apps/vet/src/interfaces/review/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export interface PartnersReviewListType {
reviewerImageUrl: string;
revieweeName: string;
createdAt: string;
starRating: number;
starRating: 1 | 2 | 3 | 4 | 5;
content: string;
imageUrlList: string[];
reportType?: string;
Expand All @@ -21,7 +21,7 @@ export interface CareReviewList {
reviewerImageUrl: string;
revieweeName: string;
createdAt: string;
starRating: number;
starRating: 1 | 2 | 3 | 4 | 5;
content: string;
imageUrlList: string[];
}
Expand All @@ -34,7 +34,7 @@ export interface CareReviewReportList {
reviewerImageUrl: string;
revieweeName: string;
createdAt: string;
starRating: number;
starRating: 1 | 2 | 3 | 4 | 5;
content: string;
imageUrlList: string[];
reportType: string;
Expand Down
6 changes: 3 additions & 3 deletions packages/services/src/components/partner-pet-info/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ import {
PET_GENDER,
PET_IS_NEUTERED,
PET_SIGNIFICANTTAG,
} from '~/constants/pet';
import { Breed } from '~/interface/pet';
import { PET_SIZE } from '~/constants';
} from '../../constants/pet';
import { Breed } from '../../interface/pet';
import { PET_SIZE } from '../../constants';

interface Props {
petInfo: PetInfo;
Expand Down

0 comments on commit d5af82e

Please sign in to comment.