Skip to content

Commit

Permalink
[NO-ISSUE] Fix: home button (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
minsour authored Feb 9, 2024
1 parent 23ac6c0 commit 725aaca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/MyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const MyPage = () => {
if (isPending) {
return (
<Fragment>
<Header showBackButton actionIcon="guide">
<Header showBackButton showHomeButton actionIcon="guide">
마이페이지
</Header>
<div className={styles.container}>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/TteokgukPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const TteokgukPage = () => {
if (isPending) {
return (
<Fragment>
<Header showBackButton actionIcon="profile">
<Header showBackButton showHomeButton actionIcon="profile">
소원 떡국
</Header>
<div className={styles.container}>
Expand Down Expand Up @@ -160,7 +160,7 @@ const TteokgukPage = () => {

return (
<Fragment>
<Header showBackButton actionIcon="profile">
<Header showBackButton showHomeButton actionIcon="profile">
소원 떡국
</Header>
<div className={styles.container}>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/UserPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const UserPage = () => {
if (isPending || !userDetails) {
return (
<Fragment>
<Header showBackButton actionIcon="profile">
<Header showBackButton showHomeButton actionIcon="profile">
프로필
</Header>
<div className={styles.container}>
Expand Down

0 comments on commit 725aaca

Please sign in to comment.