diff --git a/src/components/Profile/ProfileImage.tsx b/src/components/Profile/ProfileImage.tsx index 50e378272..4b63f7444 100644 --- a/src/components/Profile/ProfileImage.tsx +++ b/src/components/Profile/ProfileImage.tsx @@ -1,6 +1,6 @@ import Image from 'next/image'; import { ProfileImgSize } from '@/constants/constants'; -import { ProfileSVG } from '@/icons/svg'; +import { ProfileSVG } from '../../../public/icons/svg'; interface ProfileProps { src?: string | null; diff --git a/src/components/Review/Rating.tsx b/src/components/Review/Rating.tsx index dfe75f5bc..9b510bc8e 100644 --- a/src/components/Review/Rating.tsx +++ b/src/components/Review/Rating.tsx @@ -1,6 +1,6 @@ 'use client'; import { useState, useEffect } from 'react'; -import { BigStar, StarSVG } from '@/icons/svg'; +import { BigStar, StarSVG } from '../../../public/icons/svg'; interface ReadonlyProps { rate: number; diff --git a/src/components/Review/Review.tsx b/src/components/Review/Review.tsx index d6271cd60..c1cce3e70 100644 --- a/src/components/Review/Review.tsx +++ b/src/components/Review/Review.tsx @@ -1,5 +1,5 @@ import { nanoid } from 'nanoid'; -import { StarSVG } from '@/../public/icons/svg'; +import { StarSVG } from '../../../public/icons/svg'; interface ReviewProps { average: number; diff --git a/src/components/Review/UserReview.tsx b/src/components/Review/UserReview.tsx index 868b2234a..8600cf2aa 100644 --- a/src/components/Review/UserReview.tsx +++ b/src/components/Review/UserReview.tsx @@ -1,9 +1,9 @@ 'use client'; import { useRouter } from 'next/navigation'; import { useState } from 'react'; -import { LikeSVG } from '@/icons/svg'; import { postReviewLikes, deleteReviewLikes } from '@/lib/apis/classApis'; import Review from './Review'; +import { LikeSVG } from '../../../public/icons/svg'; import Profile from '../Profile/ProfileImage'; interface UserReviewProps {