diff --git a/src/browser/safariApp.ts b/src/browser/safariApp.ts index dc76828274..6d3b3cdc21 100644 --- a/src/browser/safariApp.ts +++ b/src/browser/safariApp.ts @@ -69,15 +69,15 @@ export class SafariApp { } private static cleanupOldRequests() { - const remoteIds: string[] = []; + const removeIds: string[] = []; ((window as any).bitwardenSafariAppRequests as Map void, timeoutDate: Date }>) .forEach((v, key) => { if (v.timeoutDate < new Date()) { - remoteIds.push(key); + removeIds.push(key); } }); - remoteIds.forEach((id) => { + removeIds.forEach((id) => { (window as any).bitwardenSafariAppRequests.delete(id); }); }