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

@@ -251,7 +251,7 @@ export async function load_ae_obj_id__event_badge_template({
return null;
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
});
return ae_promises.load__event_badge_template_obj;
@@ -321,7 +321,7 @@ export async function load_ae_obj_li__event_badge_template({
return [];
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
});
return ae_promises.load__event_badge_template_obj_li;
@@ -377,7 +377,7 @@ export async function create_ae_obj__event_badge_template({
return null;
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
});
return ae_promises.create__event_badge_template;
@@ -410,7 +410,7 @@ export async function delete_ae_obj_id__event_badge_template({
method,
log_lvl
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
})
.finally(function () {
@@ -472,7 +472,7 @@ export async function update_ae_obj__event_badge_template({
return null;
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
});
return ae_promises.update__event_badge_template_obj;
@@ -554,7 +554,7 @@ export async function search__event_badge_template({
return [];
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.', error);
});
return ae_promises.search__event_badge_template_obj_li;