Skip to content

Commit 6da3693

Browse files
committed
BUG : 작가 팔로우 취소하기 artistId -> accountId로 수정
1 parent e633e61 commit 6da3693

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/user/service/user.service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ export const UserService = {
297297

298298
// 작가 팔로우 취소하기
299299
async CancelArtistFollow(accountId, artistId) {
300-
const artist = await UserRepository.findArtistById(artistId);
300+
const artist = await UserRepository.findArtistById(accountId);
301301

302302
if(!artist)
303303
throw new ArtistNotFound();

0 commit comments

Comments
 (0)