suppress kltint warning about Property name

not sure why "Property name should start with a lowercase letter and use camel case (cannot be auto-corrected)" is shown.

also see commit
523b8080d1

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
Marcel Hibbe 2025-05-30 09:46:38 +02:00
parent 87f8272b10
commit 6ec4e05cb1
No known key found for this signature in database
GPG Key ID: C793F8B59F43CE7B

View File

@ -39,8 +39,10 @@ class ContactsViewModel @Inject constructor(
private val _enableAddButton = MutableStateFlow(false)
val enableAddButton: StateFlow<Boolean> = _enableAddButton
@Suppress("PropertyName")
private val _selectedContacts = MutableStateFlow<List<AutocompleteUser>>(emptyList())
@Suppress("PropertyName")
private val _clickAddButton = MutableStateFlow(false)
private var hideAlreadyAddedParticipants: Boolean = false