Always run npm run build
This commit is contained in:
parent
05df606ea4
commit
1a53e34290
1 changed files with 4 additions and 2 deletions
|
|
@ -95,13 +95,15 @@ const WeaponGrid = (props: Props) => {
|
||||||
const payload: DetailsObject = { extra: party.extra }
|
const payload: DetailsObject = { extra: party.extra }
|
||||||
props.createParty(payload).then((team) => {
|
props.createParty(payload).then((team) => {
|
||||||
saveWeapon(team.id, weapon, position).then((response) => {
|
saveWeapon(team.id, weapon, position).then((response) => {
|
||||||
storeGridWeapon(response.data.grid_weapon)
|
if (response) storeGridWeapon(response.data.grid_weapon)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
if (party.editable)
|
if (party.editable)
|
||||||
saveWeapon(party.id, weapon, position)
|
saveWeapon(party.id, weapon, position)
|
||||||
.then((response) => handleWeaponResponse(response.data))
|
.then((response) => {
|
||||||
|
if (response) handleWeaponResponse(response.data)
|
||||||
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
const axiosError = error as AxiosError
|
const axiosError = error as AxiosError
|
||||||
const response = axiosError.response
|
const response = axiosError.response
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue