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 6608601 commit f5858e3Copy full SHA for f5858e3
app/src/main/java/to/bitkit/viewmodels/AppViewModel.kt
@@ -90,7 +90,7 @@ class AppViewModel @Inject constructor(
90
fun addTagToSelected(newTag: String) {
91
_sendUiState.update {
92
it.copy(
93
- selectedTags = it.selectedTags + newTag
+ selectedTags = (it.selectedTags + newTag).distinct()
94
)
95
}
96
0 commit comments