Skip to content

Commit 913ce24

Browse files
authored
Merge pull request #168 from umc-commit/fix/front-user-artist-google
BUG : 작가 팔로우 하기 버그 수정
2 parents b59a017 + a205214 commit 913ce24

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)