Fix: Resolve implicit any and property access errors in core components
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user