Skip to content

Commit

Permalink
Fix : 랜딩 페이지에 '파티'를 '여행'으로 텍스트 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
rangggu committed Jan 2, 2025
1 parent 609f379 commit 691d2d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/LandingPage/UserMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function UserMenu({ userMenu, setUserMenu }: Props) {
onClick={() => setUserMenu("recommend")}
disabled={user.role !== "ROLE_USER"}
>
{user.auth ? `${user.nickname} 님께 추천하는 파티` : "추천 파티"}
{user.auth ? `${user.nickname} 님께 추천하는 여행` : "추천 여행"}
</button>
{user.role === "ROLE_USER" && (
<button
Expand All @@ -32,7 +32,7 @@ function UserMenu({ userMenu, setUserMenu }: Props) {
onClick={() => setUserMenu("myParty")}
disabled={user.role !== "ROLE_USER"}
>
나의 파티
나의 여행
</button>
)}
</div>
Expand Down

0 comments on commit 691d2d0

Please sign in to comment.