Skip to content
This repository was archived by the owner on Nov 5, 2024. It is now read-only.

Commit 61b1388

Browse files
committed
fix-issue-3488
1 parent caf54d4 commit 61b1388

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

Diff for: screen/categories/src/main/java/com/ivy/categories/CategoriesScreen.kt

-1
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,6 @@ private fun SearchField(
872872
)
873873
}
874874

875-
876875
/** For screenshot testing */
877876
@Composable
878877
fun CategoriesScreenUiTest(isDark: Boolean) {

Diff for: screen/categories/src/main/java/com/ivy/categories/CategoriesViewModel.kt

-2
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ class CategoriesViewModel @Inject constructor(
185185
val sortedList = sortList(categories, sortOrder.value).toImmutableList()
186186
this.allCategories.value = sortedList
187187
this.categories.value = this.allCategories.value
188-
189188
}
190189
}
191190

@@ -195,7 +194,6 @@ class CategoriesViewModel @Inject constructor(
195194
unsortedList = this.allCategories.value.filter {
196195
it.category.name.value.toLowerCase().contains(queryString.toLowerCase().trim())
197196
}
198-
199197
} else {
200198
unsortedList = this.allCategories.value
201199
}

0 commit comments

Comments
 (0)