Skip to content

Commit

Permalink
Merge pull request #219 from bsideproject/feature/user
Browse files Browse the repository at this point in the history
[feat] editProfile 수정 이미지 업로드 하는 부분...제발...!
  • Loading branch information
KinDDoGGang authored Nov 29, 2023
2 parents f51f6ca + 2d3ca60 commit 26b043f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/userInfo/editProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export default function EditProfile({ _imageSrc, userInfo }: ProfileProps) {
callbackImageFn={(imageList: ImageListType) => {
if (imageList && imageList[0] && imageList[0].dataURL) {
setImageSrc(imageList[0].dataURL);
const image = imageList[0];
const image = imageList[0].file;
const file = {
lastModified: image?.lastModified,
lastModifiedDate: image?.lastModifiedDate,
Expand Down

0 comments on commit 26b043f

Please sign in to comment.