Skip to content

Commit 726b80b

Browse files
authored
[fix] 작가 목록 조회 ID값 불일치 오류 해결 (#382)
1 parent 89666eb commit 726b80b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/back/domain/artist/dto/response/ArtistListResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public record ArtistListResponse (
1616
) {
1717
public static ArtistListResponse from(ArtistProfile artistProfile) {
1818
return new ArtistListResponse(
19-
artistProfile.getUser().getId(),
19+
artistProfile.getId(),
2020
artistProfile.getArtistName()
2121
);
2222
}

0 commit comments

Comments
 (0)