Skip to content

Commit

Permalink
앨범 수정 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
ipcgrdn committed Dec 22, 2024
1 parent 0868ecd commit 756aa91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/modal/album/albumEdit-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const AlbumEditModal = () => {
setIsloading(true);

try {
const albumArtUrl = file ? (await uploadToS3(file)).url : "";
const albumArtUrl = file ? await uploadToS3(file) : "";

console.log(uuid);
console.log(values);
Expand Down

0 comments on commit 756aa91

Please sign in to comment.