Skip to content

Commit

Permalink
Make usage of the plural of the word "setting" more coherent
Browse files Browse the repository at this point in the history
  • Loading branch information
LunarX committed Aug 20, 2024
1 parent 6ad123d commit c78a229
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,17 @@ fun SettingItem(
modifier = modifier,
onClick = it,
) {
SettingsItemContent(icon, titleRes, description, endIcon)
SettingItemContent(icon, titleRes, description, endIcon)
}
} ?: run {
Box(modifier = modifier, contentAlignment = Alignment.CenterStart) {
SettingsItemContent(icon, titleRes, description, endIcon)
SettingItemContent(icon, titleRes, description, endIcon)
}
}
}

@Composable
private fun SettingsItemContent(
private fun SettingItemContent(
icon: ImageVector?,
titleRes: Int,
description: String?,
Expand Down

0 comments on commit c78a229

Please sign in to comment.