Fix round index.
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
2023-01-21 16:40:00 +01:00
parent 984afb610f
commit 9618dfce47

View File

@@ -50,7 +50,7 @@ private fun RoundListItem(round: Round, index: Int) {
textAlign = TextAlign.Center
)
Text(
text = index.toString(),
text = (index + 1).toString(),
style = MaterialTheme.typography.bodyMedium,
modifier = Modifier.weight(1f),
textAlign = TextAlign.Center