Skip to content

Commit a727084

Browse files
committed
🐛 fix space issue
1 parent 08b6c2c commit a727084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/theapache64/stackzy/ui/feature/selectapp/SelectAppViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class SelectAppViewModel @Inject constructor(
101101
}
102102

103103
fun onSearchKeywordChanged(newKeyword: String) {
104-
_searchKeyword.value = newKeyword.trim().replace("\n", "")
104+
_searchKeyword.value = newKeyword.replace("\n", "")
105105

106106
when (apkSource) {
107107
is ApkSource.Adb -> {

0 commit comments

Comments
 (0)