Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into release/1.63
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jul 10, 2024
2 parents 6392f21 + efdfc17 commit 0c74698
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ internal class StepQuizReducer(
Action.CreateSubmissionValidateReply(
step = message.step,
dataset = state.stepQuizState.attempt.dataset,
reply = message.reply
reply = prepareReplyForSubmission(message.step.block.name, message.reply)
),
InternalAction.LogAnalyticEvent(analyticEvent)
)
Expand Down Expand Up @@ -420,8 +420,7 @@ internal class StepQuizReducer(
)
}
ReplyValidationResult.Success -> {
val reply = prepareReplyForSubmission(state.stepQuizState.step.block.name, message.reply)
val submission = createLocalSubmission(state.stepQuizState, reply)
val submission = createLocalSubmission(state.stepQuizState, message.reply)
.copy(status = SubmissionStatus.EVALUATION)

state.copy(
Expand Down

0 comments on commit 0c74698

Please sign in to comment.