Fix: Resolve implicit any and property access errors in core components

This commit is contained in:
Scott Idem
2026-01-22 19:44:10 -05:00
parent 94a387ca6d
commit 32002fe6bd
4 changed files with 16 additions and 14 deletions

View File

@@ -213,7 +213,7 @@
return true;
})
.catch((err) => {
.catch((err: any) => {
console.log('There was an error while trying to start the QR scanner');
scanning_status = 'start_error';
@@ -320,7 +320,7 @@
qr_entered_text = null;
}
function send_init_confirm_email(subject, message) {
function send_init_confirm_email(subject: string, message: any) {
console.log(`*** send_init_confirm_email() *** ${subject}`);
let to_email = 'scott.idem+skdev@oneskyit.com';