From a2254ea11752e1c08517b1fe4af01c9f99e89a75 Mon Sep 17 00:00:00 2001 From: somin2352 Date: Fri, 22 Aug 2025 12:03:53 +0900 Subject: [PATCH] =?UTF-8?q?bugFIx:=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20?= =?UTF-8?q?=EA=B2=BD=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProfileDetailPage/ProfileHeader.tsx | 6 +-- .../ProfileDetailPage/ProfileKeywords.tsx | 48 +++++++++---------- .../ProfileDetailPage/ProfileTimeTable.tsx | 2 +- 3 files changed, 28 insertions(+), 28 deletions(-) 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 - ? - <> - - - + {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';