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

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)