diff --git a/apps/what-today/src/components/MypageSidebar.tsx b/apps/what-today/src/components/MypageSidebar.tsx
index b76552c5..3cbebd14 100644
--- a/apps/what-today/src/components/MypageSidebar.tsx
+++ b/apps/what-today/src/components/MypageSidebar.tsx
@@ -72,15 +72,6 @@ export default function MypageSidebar({ onLogoutClick, onClick, isOpen }: Mypage
'md:flex',
)}
>
- {/* {profileImgUrl ? (
-
- ) : (
-
- )} */}
{items.map(({ label, icon: Icon, to }) => {
const isSelected = location.pathname === to;
diff --git a/apps/what-today/src/index.css b/apps/what-today/src/index.css
index d82f787a..f1816dfe 100644
--- a/apps/what-today/src/index.css
+++ b/apps/what-today/src/index.css
@@ -58,6 +58,10 @@
color: var(--color-gray-950);
background-color: white;
}
+
+ font {
+ word-break: break-all;
+ }
}
@layer components {
diff --git a/apps/what-today/src/layouts/Mypage.tsx b/apps/what-today/src/layouts/Mypage.tsx
index 0070d0db..46304692 100644
--- a/apps/what-today/src/layouts/Mypage.tsx
+++ b/apps/what-today/src/layouts/Mypage.tsx
@@ -48,7 +48,7 @@ export default function MyPageLayout() {
{/* Outlet으로 상세 화면 표시 */}
-
diff --git a/apps/what-today/src/pages/mypage/reservations-list/index.tsx b/apps/what-today/src/pages/mypage/reservations-list/index.tsx
index b7898be7..3129972d 100644
--- a/apps/what-today/src/pages/mypage/reservations-list/index.tsx
+++ b/apps/what-today/src/pages/mypage/reservations-list/index.tsx
@@ -230,7 +230,7 @@ export default function ReservationsListPage() {
예약내역 변경 및 취소할 수 있습니다.
-
+
value.toLocaleString('ko');
- // badge 컴포넌트로 수정 예정
- const reservationStatus = {
- pending: { badge: '신청 완료', style: 'bg-[#DAF0FF] text-[#0D6CD1]' },
- confirmed: { badge: '예약 승인', style: 'bg-[#DDF9F9] text-[#1790A0]' },
- declined: { badge: '예약 거절', style: 'bg-[#FCECEA] text-[#F96767]' },
- canceled: { badge: '예약 취소', style: 'bg-[#E0E0E5] text-[#707177]' },
- completed: { badge: '체험 완료', style: 'bg-[#E9FBE4] text-[#2BA90D]' },
- };
- const { badge, style } = reservationStatus[status];
return (
- {/* badge 컴포넌트로 수정 예정 */}
- {badge}
-
{title}
+
+ {title}
-
diff --git a/packages/design-system/src/components/UserBadge.tsx b/packages/design-system/src/components/UserBadge.tsx
index d5a3f131..f0343bdc 100644
--- a/packages/design-system/src/components/UserBadge.tsx
+++ b/packages/design-system/src/components/UserBadge.tsx
@@ -32,7 +32,7 @@ export default function UserBadge({ status }: UserBadgeProps) {
const { label, style } = reservationStatus[status];
const baseClass =
- ' flex items-center justify-center gap-2 w-auto rounded-full px-6 py-1 text-center caption-text font-bold';
+ ' flex items-center justify-center gap-2 w-fit rounded-full px-8 py-2 text-center caption-text font-bold';
return (