fix compiling

This commit is contained in:
creeper123123321 2024-06-06 17:49:38 -03:00
parent 48fbe5b3e7
commit 2462d26b3e

View File

@ -362,7 +362,7 @@ function authNotification(msg: string, yes: () => void, no: () => void) {
// @ts-ignore // @ts-ignore
let tag = uuid.v4(); let tag = uuid.v4();
navigator.serviceWorker.ready.then(r => { navigator.serviceWorker.ready.then(r => {
r.showNotification("Click to allow auth impersonation", { val options = {
body: msg, body: msg,
tag: tag, tag: tag,
vibrate: [200, 10, 100, 200, 100, 10, 100, 10, 200], vibrate: [200, 10, 100, 200, 100, 10, 100, 10, 200],
@ -370,7 +370,8 @@ function authNotification(msg: string, yes: () => void, no: () => void) {
{action: "reject", title: "Reject"}, {action: "reject", title: "Reject"},
{action: "confirm", title: "Confirm"} {action: "confirm", title: "Confirm"}
] ]
}).then(() => { }
r.showNotification("Click to allow auth impersonation", options).then(() => {
}); });
notificationCallbacks.set(tag, action => { notificationCallbacks.set(tag, action => {
if (action === "reject") { if (action === "reject") {