refactor(striker-ui): align all axios error var naming
This commit is contained in:
parent
237e647cf3
commit
cdb2896984
@ -558,8 +558,8 @@ const ManageManifestPanel: FC = () => {
|
|||||||
.then(({ data }) => {
|
.then(({ data }) => {
|
||||||
setHostOverviews(data);
|
setHostOverviews(data);
|
||||||
})
|
})
|
||||||
.catch((apiError) => {
|
.catch((error) => {
|
||||||
handleAPIError(apiError);
|
handleAPIError(error);
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
setIsLoadingHostOverviews(false);
|
setIsLoadingHostOverviews(false);
|
||||||
|
@ -113,8 +113,8 @@ const useFormUtils = <
|
|||||||
|
|
||||||
onSuccess?.call(null);
|
onSuccess?.call(null);
|
||||||
})
|
})
|
||||||
.catch((apiError) => {
|
.catch((error) => {
|
||||||
const emsg = handleAPIError(apiError);
|
const emsg = handleAPIError(error);
|
||||||
|
|
||||||
emsg.children = getErrorMsg(emsg.children);
|
emsg.children = getErrorMsg(emsg.children);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user