We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94f1d18 commit 839e240Copy full SHA for 839e240
src/shared/component/Layout/layoutHeader/Header.tsx
@@ -85,12 +85,13 @@ const Header = () => {
85
);
86
})}
87
</nav>
88
- <img
89
- src={user.profileImageUrl}
90
- alt="유저 프로필 이미지"
91
- className={styles.profilePlaceholder}
92
- onClick={handleProfile}
93
- />
+ <button onClick={handleProfile}>
+ <img
+ src={user.profileImageUrl}
+ alt="유저 프로필 이미지"
+ className={styles.profilePlaceholder}
+ />
94
+ </button>
95
{openProfile && <UserModal onClose={handleProfile} />}
96
</>
97
0 commit comments