Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into release/1.78
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 1, 2024
2 parents 77f10e5 + e44ab2a commit 3191b4a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ final class StepQuizMatchingViewModel: ObservableObject, StepQuizChildQuizInputP

let items = pairs.enumerated().map { index, _ in
StepQuizMatchingViewData.MatchItem(
title: .init(id: index, text: pairs[index].first ?? ""),
option: options.first { $0.id == replyOrdering?[index] }
title: .init(id: index, text: pairs[safe: index]?.first ?? ""),
option: options.first { $0.id == replyOrdering?[safe: index] }
)
}

Expand Down

0 comments on commit 3191b4a

Please sign in to comment.