Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mumu-kun committed Oct 6, 2024
1 parent 3e98489 commit 2f936a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public Enrollment createEnrollment(EnrollmentCreateRequest request, Integer gigI

var enrollment = Enrollment.builder()
.gig(gig)
.price(request.getPrice())
.price(Float.valueOf(request.getPrice()))
.numSessions(request.getNumSessions())
.sessionDurationInMinutes(request.getSessionDurationInMinutes())
.buyer(buyer)
Expand Down

0 comments on commit 2f936a6

Please sign in to comment.