fun changeWishlistStatus(id: String) {
        runIO {
            when (val response = homeRepo.checkWishlisted(id)) {
                is ResultWrapper.GenericError -> setError(response.error)
                is ResultWrapper.Success -> with(response.value) {