Фикс компиляции: padding(horizontal, bottom) → padding(start, end, bottom)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-17 17:52:05 +07:00
parent 02e95ccd2b
commit c6c0ade1b3

View File

@@ -2672,7 +2672,7 @@ fun MessageSkeletonList(
modifier =
Modifier.align(Alignment.BottomStart)
.fillMaxWidth()
.padding(horizontal = 8.dp, bottom = bottomInset),
.padding(start = 8.dp, end = 8.dp, bottom = bottomInset),
verticalArrangement = Arrangement.spacedBy(4.dp)
) {
repeat(rowCount) { index ->