diff --git a/src/components/ProfileDetailPage/ProfileHeader.tsx b/src/components/ProfileDetailPage/ProfileHeader.tsx index e52e369..85c8d17 100644 --- a/src/components/ProfileDetailPage/ProfileHeader.tsx +++ b/src/components/ProfileDetailPage/ProfileHeader.tsx @@ -1,7 +1,7 @@ -import profileBg from '@/assets/images/profile-bg.png'; -import sampleProfile from '@/assets/basic-profile.png'; +import profileBg from '../../assets/images/profile-bg.png'; +import sampleProfile from '../../assets/basic-profile.png'; import { INTEREST_TYPE_LABELS } from '../../components/ProfileCard'; -import Pencil from '@/assets/icons/pencil.svg'; +import Pencil from '../../assets/icons/pencil.svg'; import { useNavigate } from 'react-router-dom'; import type { UserKeywordDto } from '../../types/profile'; import React, { useRef } from 'react'; diff --git a/src/components/ProfileDetailPage/ProfileKeywords.tsx b/src/components/ProfileDetailPage/ProfileKeywords.tsx index 467f7a4..9dc4705 100644 --- a/src/components/ProfileDetailPage/ProfileKeywords.tsx +++ b/src/components/ProfileDetailPage/ProfileKeywords.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { useNavigate } from 'react-router-dom'; import KeywordCard from '../../components/KeywordCard'; -import Pencil from '@/assets/icons/pencil.svg'; +import Pencil from '../../assets/icons/pencil.svg'; import type { UserKeywordDto } from '../../types/profile'; interface ProfileKeywordsProps { @@ -28,30 +28,30 @@ const ProfileKeywords = ({ my = false, userKeywords }: ProfileKeywordsProps) => )}
세 가지 “키워드”로 나를 소개할게요!
- {userKeywords - ? - <> -로딩 중…
- } + ) : ( +로딩 중…
+ )} ); }; diff --git a/src/components/ProfileDetailPage/ProfileTimeTable.tsx b/src/components/ProfileDetailPage/ProfileTimeTable.tsx index 05164ea..e48b633 100644 --- a/src/components/ProfileDetailPage/ProfileTimeTable.tsx +++ b/src/components/ProfileDetailPage/ProfileTimeTable.tsx @@ -1,6 +1,6 @@ import React from 'react'; import TimeTable from '../../components/TimeTable'; -import Pencil from '@/assets/icons/pencil.svg'; +import Pencil from '../../assets/icons/pencil.svg'; import { useNavigate } from 'react-router-dom'; import type { TimeTableDto } from '../../types/profile';