forgot to remove 20 labels test

This commit is contained in:
Lukas Barragan Torres 2023-05-04 10:29:34 +02:00
parent 9688426093
commit 61b3c87142

View file

@ -43,15 +43,12 @@ abstract class AbstractTimerEditScreen(private val timerInfo: TimerInfo) {
label = R.string.name
)
repeat(20) {
LabelledInputField(
value = description,
onNewValue = { description = it },
label = R.string.description,
singleLine = false
)
}
LabelledInputField(
value = description,
onNewValue = { description = it },
label = R.string.description,
singleLine = false
)
ExtraFields()