From 40129599dc589bba4696693f17a12aea470d3cc2 Mon Sep 17 00:00:00 2001 From: ahdeka Date: Wed, 15 Oct 2025 18:11:17 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20=EC=9E=91=EA=B0=80=20=EB=AA=A9=EB=A1=9D?= =?UTF-8?q?=20=EC=A1=B0=ED=9A=8C=20ID=EA=B0=92=20=EB=B6=88=EC=9D=BC?= =?UTF-8?q?=EC=B9=98=20=EC=98=A4=EB=A5=98=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/back/domain/artist/dto/response/ArtistListResponse.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/back/domain/artist/dto/response/ArtistListResponse.java b/src/main/java/com/back/domain/artist/dto/response/ArtistListResponse.java index e4fad5db..7b46c17b 100644 --- a/src/main/java/com/back/domain/artist/dto/response/ArtistListResponse.java +++ b/src/main/java/com/back/domain/artist/dto/response/ArtistListResponse.java @@ -16,7 +16,7 @@ public record ArtistListResponse ( ) { public static ArtistListResponse from(ArtistProfile artistProfile) { return new ArtistListResponse( - artistProfile.getUser().getId(), + artistProfile.getId(), artistProfile.getArtistName() ); }