Update to all catch functions.

This commit is contained in:
Scott Idem
2025-11-13 20:15:09 -05:00
parent 7cd59bfaac
commit 88d36d512d
52 changed files with 170 additions and 170 deletions

View File

@@ -44,7 +44,7 @@ export async function handle_load_ae_obj_id__exhibit(
return null;
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
});
@@ -124,7 +124,7 @@ export async function handle_load_ae_obj_li__exhibit(
return [];
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
})
.finally(function () {
@@ -178,7 +178,7 @@ export async function handle_load_ae_obj_id__exhibit_tracking(
return null;
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
});
@@ -239,7 +239,7 @@ export async function handle_load_ae_obj_li__exhibit_tracking(
return [];
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
})
.finally(function () {
@@ -302,7 +302,7 @@ export async function handle_create_ae_obj__exhibit_tracking(
return null;
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
})
.finally(function () {
@@ -353,7 +353,7 @@ export async function handle_update_ae_obj__exhibit_tracking(
return null;
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
})
.finally(function () {