Skip to content

Commit

Permalink
Fix account circle being shown when actually clear button should be a…
Browse files Browse the repository at this point in the history
…nd vice versa
  • Loading branch information
HeroBrine1st committed Jun 20, 2024
1 parent 0fa1892 commit 22061e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class SearchComponent private constructor(
@CachedDataStore
val shouldShowAccountFillInFavouritesOfField
@Composable
get() = dataStoreModule.cachedData.collectAsState().value.auth != null && favouritesOf.isNotEmpty()
get() = dataStoreModule.cachedData.collectAsState().value.auth != null && favouritesOf.isEmpty()

fun onFavouritesOfTrailingButtonClick() {
lifecycleScope.launch {
Expand Down

0 comments on commit 22061e2

Please sign in to comment.