Revise response format due to Blueprinter

This commit is contained in:
Justin Edmund 2022-12-22 23:33:38 -08:00
parent 0c89300664
commit c401804e7b

View file

@ -225,7 +225,7 @@ const CharacterGrid = (props: Props) => {
.updateJobSkills({ partyId: party.id, params: payload })
.then((response) => {
// Update the current skills
const newSkills = response.data.party.job_skills
const newSkills = response.data.job_skills
setJobSkills(newSkills)
appState.party.jobSkills = newSkills
})