Skip to content

Commit

Permalink
fix: value pass to argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
krhrtky committed Oct 28, 2024
1 parent f4989c6 commit ccf8063
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class UserApplicationService(
fun create(input: UserCreateInput) = {
input
.let {
User.create(input.firstName, input.firstName, input.email)
User.create(input.firstName, input.lastName, input.email)
}
.apply(repository::save).id.value
}
Expand Down

0 comments on commit ccf8063

Please sign in to comment.