Skip to content

Commit

Permalink
fix: fix typo - parameter order error
Browse files Browse the repository at this point in the history
  • Loading branch information
gmkim20713 committed Nov 23, 2024
1 parent 7bdf93a commit d5c1800
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public Mono<AlbumResponse> createAlbum(
AlbumCreateRequest request
){
return albumService
.addAlbum(memberId, request.name(), request.type())
.addAlbum(request.name(), request.type(), memberId)
.map(AlbumResponse::fromEntity);
}

Expand Down

0 comments on commit d5c1800

Please sign in to comment.