Another round of lots of updates to fix little bugs here there and everywhere.

This commit is contained in:
Scott Idem
2025-11-13 20:03:51 -05:00
parent 13869b40bd
commit 7cd59bfaac
9 changed files with 26 additions and 18 deletions

View File

@@ -224,7 +224,7 @@ async function handle_get_device_info(event_device_id) {
console.log(up_event_device_result);
}
})
.catch(function (error) {
.catch(function (error: any) {
console.log('No results returned or failed.');
console.log(error);
});

View File

@@ -237,7 +237,7 @@ let ae_promises: key_val = $state({});
}).then(() => {
// Optionally, you can provide feedback to the user
alert('Journal entry deleted successfully!');
}).catch((error) => {
}).catch((error: any) => {
console.error('Error deleting journal entry:', error);
alert('Failed to delete journal entry.');
}).finally(() => {