Cleanup code. This if was not necessary.

This commit is contained in:
Benoit Marty 2026-01-08 11:35:52 +01:00
parent 1b217d4649
commit 83f7268424

View file

@ -453,7 +453,6 @@ private fun StandardLayout(
} }
Row(verticalAlignment = Alignment.Bottom) { Row(verticalAlignment = Alignment.Bottom) {
if (voiceMessageState !is VoiceMessageState.Idle) { if (voiceMessageState !is VoiceMessageState.Idle) {
if (voiceMessageState is VoiceMessageState.Preview || voiceMessageState is VoiceMessageState.Recording) {
Box( Box(
modifier = Modifier modifier = Modifier
.padding(bottom = 5.dp, top = 5.dp, end = 3.dp, start = 3.dp) .padding(bottom = 5.dp, top = 5.dp, end = 3.dp, start = 3.dp)
@ -462,9 +461,6 @@ private fun StandardLayout(
) { ) {
voiceDeleteButton() voiceDeleteButton()
} }
} else {
Spacer(modifier = Modifier.width(16.dp))
}
Box( Box(
modifier = Modifier modifier = Modifier
.padding(bottom = 8.dp, top = 8.dp) .padding(bottom = 8.dp, top = 8.dp)