Skip to content

Commit

Permalink
fix: error in refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-borriello00 committed Oct 18, 2023
2 parents c02a4f6 + d9d34a1 commit 6ea1aac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ object LeftTabComponent:
children <-- gameViewModel.currentAwards.map(_.toSeq).split(_._1) { (award, opt, _) =>
li(
award.toDisplayable,
":",
opt._2.map((player, score) => s" ($player: $score)").getOrElse(" Nobody Yet")
": ",
opt._2.map((player, score) => s"($player: $score)").getOrElse("Nobody Yet")
)
}
)
Expand Down

0 comments on commit 6ea1aac

Please sign in to comment.