Skip to content

Commit

Permalink
Changed unused indexed loop to object only.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinscholten committed Mar 8, 2022
1 parent d6bf6a8 commit e99b08e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontendMain/kotlin/Welcome.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fun RBuilder.welcome() = child(functionComponent {
styledTr {
styledTd { b { +"E-mails:" } }
}
werknemer?.emails?.forEachIndexed { index, email ->
werknemer?.emails?.forEach { email ->
styledTr {
styledTd { +email }
}
Expand Down

0 comments on commit e99b08e

Please sign in to comment.