Skip to content

Commit

Permalink
add trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
JaesungLeee committed Aug 16, 2023
1 parent 57c06af commit 112f997
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private fun DescriptionSection(
)
ReadMoreOutlinedButton(
onClick = { isExpanded = !isExpanded },
modifier = Modifier.padding(top = 16.dp, start = 16.dp, end = 16.dp)
modifier = Modifier.padding(top = 16.dp, start = 16.dp, end = 16.dp),
)
BorderLine(modifier = Modifier.padding(top = 24.dp))
}
Expand Down Expand Up @@ -285,16 +285,16 @@ private fun ReadMoreOutlinedButton(
shape = RoundedCornerShape(100.dp),
border = BorderStroke(
width = 1.dp,
color = MaterialTheme.colorScheme.outline
color = MaterialTheme.colorScheme.outline,
),
onClick = onClick
onClick = onClick,
) {
Text(
modifier = Modifier.padding(vertical = 10.dp),
text = SessionsStrings.ReadMore.asString(),
fontSize = 14.sp,
textAlign = TextAlign.Center,
color = MaterialTheme.colorScheme.primary
color = MaterialTheme.colorScheme.primary,
)
}
}
Expand Down

0 comments on commit 112f997

Please sign in to comment.