некорректное отображение данных в корзине

This commit is contained in:
dasha 2023-12-20 16:26:51 +04:00
parent a66218c7ab
commit 39f2cf609c

View File

@ -19,9 +19,11 @@ open class MyViewModel : ViewModel() {
fun runInScope( fun runInScope(
actionSuccess: suspend () -> Unit, actionSuccess: suspend () -> Unit,
actionError: suspend () -> Unit actionError: suspend () -> Unit,
needLoadingScreen: Boolean = true,
) { ) {
viewModelScope.launch { viewModelScope.launch {
if (needLoadingScreen)
apiStatus = ApiStatus.LOADING apiStatus = ApiStatus.LOADING
runCatching { runCatching {
actionSuccess() actionSuccess()