Remove noisy error disconnected toast (#3263)

This commit is contained in:
Ben Meadors 2025-09-30 20:16:21 -05:00 committed by GitHub
parent 8b01cd70ce
commit bd0812f0d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -160,9 +160,6 @@ constructor(
combine(serviceRepository.connectionState, radioConfigState) { connState, configState ->
_radioConfigState.update { it.copy(connected = connState == ConnectionState.CONNECTED) }
if (connState == ConnectionState.DISCONNECTED && configState.responseState.isWaiting()) {
sendError(R.string.disconnected)
}
}
.launchIn(viewModelScope)