Skip to content

Commit 418b6c4

Browse files
committed
Update BloggingRemindersViewModel.kt
fix lint error
1 parent a72421d commit 418b6c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WordPress/src/main/java/org/wordpress/android/ui/bloggingreminders/BloggingRemindersViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ class BloggingRemindersViewModel @Inject constructor(
144144
}
145145

146146
private fun formattedDay(it: DayOfWeek) =
147-
it.name.toLowerCase(Locale.getDefault()).capitalize(Locale.ROOT)
147+
it.name.toLowerCase(Locale.getDefault()) // TODO: Capitalize first letter
148148

149149
private fun buildEpiloguePrimaryButton(): PrimaryButton {
150150
return PrimaryButton(

0 commit comments

Comments
 (0)