Skip to content

Commit

Permalink
[fix] editProfile name build 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JAEMOONLEE committed Sep 26, 2023
1 parent f2bf7c0 commit 9d212f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/profile/editProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default function EditProfile({ _imageSrc }: ProfileProps) {
<div className="flex justify-center items-center h-[90px] mt-[20px] mb-[36px]" onClick={onClick}>
<div style={{ position: 'relative', width: 90, height: 90 }} className="flex items-center justify-center">
<div style={{ borderRadius: '50%', overflow: 'hidden', width: '100%', height: '100%' }} className="flex items-center justify-center">
<img src={imageSrc || _imageSrc} alt={`${name}'s profile`} className="object-cover" />
<img src={imageSrc || _imageSrc} className="object-cover" />
</div>
<div className="absolute border-g2 border-[1px] bottom-0 right-0 bg-g0 flex items-center justify-center" style={{ width: '32px', height: '32px', borderRadius: '50%', overflow: "" }}>
<ProfileCamera className="w-[20px] h-[20px]" />
Expand Down

0 comments on commit 9d212f9

Please sign in to comment.