fun addWishlist(id: String) {
        val course = Wishlist(Course(id))
        runIO {
            when (val response = homeRepo.addWishlist(course)) {
                is ResultWrapper.GenericError -> setError(response.error)