Update uncap endpoint sets transcendence step to 0

Any uncap level update without transcendence will be 0, so this is fine since we update transcendence through the `update` API
This commit is contained in:
Justin Edmund 2023-01-22 16:09:59 -08:00
parent 8e459da328
commit ae09f2434d

View file

@ -138,7 +138,8 @@ class Api {
return axios.post(resourceUrl, { return axios.post(resourceUrl, {
[resource]: { [resource]: {
id: id, id: id,
uncap_level: value uncap_level: value,
transcendence_step: 0
} }
}) })
} }