From ae09f2434d4b71c5d44a9b7112ba6b674f6d5eb3 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 22 Jan 2023 16:09:59 -0800 Subject: [PATCH] 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 --- utils/api.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/api.tsx b/utils/api.tsx index 0acb1d40..352f60ed 100644 --- a/utils/api.tsx +++ b/utils/api.tsx @@ -138,7 +138,8 @@ class Api { return axios.post(resourceUrl, { [resource]: { id: id, - uncap_level: value + uncap_level: value, + transcendence_step: 0 } }) }