Skip to content

Commit

Permalink
Fix issue with category add
Browse files Browse the repository at this point in the history
  • Loading branch information
prof18 committed Jan 2, 2025
1 parent da103fc commit 73943c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ fun AddFeedScreen(
topAppBar = {
TopAppBar(
title = {
Text(LocalFeedFlowStrings.current.editFeed)
Text(LocalFeedFlowStrings.current.addFeed)
},
navigationIcon = {
IconButton(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ internal class FeedCategoryUseCase(
}
categoriesMutableState.update {
it.copy(
header = selectedCategoryName?.name,
header = this.selectedCategoryName?.name,
categories = categoriesWithEmpty,
)
}
Expand Down

0 comments on commit 73943c2

Please sign in to comment.