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

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

View File

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