Skip to content

Commit a205214

Browse files
committed
BUG : 작가 팔로우 하기 버그 수정
1 parent b59a017 commit a205214

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
@@ -274,7 +274,7 @@ export const UserService = {
274274

275275
// 작가 팔로우하기
276276
async FollowArtist(accountId, artistId) {
277-
const artist = await UserRepository.findArtistById(artistId);
277+
const artist = await UserRepository.findArtistById(accountId);
278278

279279
if(!artist)
280280
throw new ArtistNotFound();

0 commit comments

Comments
 (0)