Fix unreads typo.

This commit is contained in:
mtang-signal
2024-10-17 14:56:42 -07:00
committed by Greyson Parrelli
parent bebc5a55bb
commit 26c40fb86a
3 changed files with 3 additions and 3 deletions

View File

@@ -162,7 +162,7 @@ fun FoldersScreen(
state.suggestedFolders.forEach { chatFolder ->
when (chatFolder.folderType) {
ChatFolderRecord.FolderType.UNREAD -> {
val title: String = stringResource(R.string.ChatFoldersFragment__unreads)
val title: String = stringResource(R.string.ChatFoldersFragment__unread)
FolderRow(
icon = R.drawable.symbol_chat_badge_24,
title = title,

View File

@@ -79,7 +79,7 @@ class ChatFoldersViewModel : ViewModel() {
if (showUnreadSuggestion) {
suggestions.add(
ChatFolderRecord(
name = context.getString(R.string.ChatFoldersFragment__unreads),
name = context.getString(R.string.ChatFoldersFragment__unread),
showUnread = true,
showIndividualChats = true,
showGroupChats = true,