We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3346d9 commit 4a9f804Copy full SHA for 4a9f804
feature-search/src/main/java/com/hoc/flowmvi/ui/search/SearchContract.kt
@@ -65,7 +65,11 @@ internal sealed interface PartialStateChange {
65
submittedQuery = submittedQuery,
66
users = emptyList()
67
)
68
- Loading -> state.copy(isLoading = true, error = null)
+ Loading -> state.copy(
69
+ isLoading = true,
70
+ error = null,
71
+ users = emptyList()
72
+ )
73
is Success -> state.copy(
74
isLoading = false,
75
error = null,
0 commit comments