Update remix API call to send local_id

This commit is contained in:
Justin Edmund 2023-02-03 19:33:56 -08:00
parent 39b98d3f39
commit cd4f808166

View file

@ -120,9 +120,9 @@ class Api {
return axios.get(resourceUrl, params)
}
remix(shortcode: string, params?: {}) {
remix({ shortcode, body, params}: { shortcode: string, body?: {}, params?: {} }) {
const resourceUrl = `${this.url}/parties/${shortcode}/remix`
return axios.post(resourceUrl, params)
return axios.post(resourceUrl, body, params)
}
savedTeams(params: {}) {